BIND 10 trac983, updated. 7469b1f920d47306f87aab0e2fa0533903bc61af [master] remove the const qualifier from RequestACL_destroy. sunstudio doesn't seem to like this type of mismatch. Since the function is very short, removing this const wouldn't matter much.
BIND 10 source code commits
bind10-changes at lists.isc.org
Mon Jul 11 21:28:16 UTC 2011
The branch, trac983 has been updated
via 7469b1f920d47306f87aab0e2fa0533903bc61af (commit)
from b327d9aac9bfd87e175d03421069ae679087dd00 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 7469b1f920d47306f87aab0e2fa0533903bc61af
Author: JINMEI Tatuya <jinmei at isc.org>
Date: Mon Jul 11 21:26:56 2011 +0000
[master] remove the const qualifier from RequestACL_destroy. sunstudio doesn't
seem to like this type of mismatch. Since the function is very short,
removing this const wouldn't matter much.
-----------------------------------------------------------------------
Summary of changes:
src/lib/python/isc/acl/dns_requestacl_python.cc | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/python/isc/acl/dns_requestacl_python.cc b/src/lib/python/isc/acl/dns_requestacl_python.cc
index 326c717..739639e 100644
--- a/src/lib/python/isc/acl/dns_requestacl_python.cc
+++ b/src/lib/python/isc/acl/dns_requestacl_python.cc
@@ -65,7 +65,7 @@ RequestACL_init(PyObject*, PyObject*, PyObject*) {
}
void
-RequestACL_destroy(PyObject* const po_self) {
+RequestACL_destroy(PyObject* po_self) {
s_RequestACL* const self = static_cast<s_RequestACL*>(po_self);
self->cppobj.reset();
Py_TYPE(self)->tp_free(self);
More information about the bind10-changes
mailing list