BIND 10 master, updated. 8fe024cd171ecf1610419abb70e5d613b94ba5a0 [master] fix for solaris build failure

BIND 10 source code commits bind10-changes at lists.isc.org
Mon Oct 3 09:32:58 UTC 2011


The branch, master has been updated
       via  8fe024cd171ecf1610419abb70e5d613b94ba5a0 (commit)
      from  85e4dfa61bf440c132f4ce6bc73130bc6e91719c (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 8fe024cd171ecf1610419abb70e5d613b94ba5a0
Author: Jelte Jansen <jelte at isc.org>
Date:   Mon Oct 3 09:29:36 2011 +0000

    [master] fix for solaris build failure
    
    simply a forgotten cast, reviewed on jabber

-----------------------------------------------------------------------

Summary of changes:
 src/lib/dns/python/message_python.cc |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

-----------------------------------------------------------------------
diff --git a/src/lib/dns/python/message_python.cc b/src/lib/dns/python/message_python.cc
index 6012153..6de0925 100644
--- a/src/lib/dns/python/message_python.cc
+++ b/src/lib/dns/python/message_python.cc
@@ -160,7 +160,7 @@ PyMethodDef Message_methods[] = {
       "If the given message is not in RENDER mode, an "
       "InvalidMessageOperation is raised.\n"
        },
-    { "from_wire", Message_fromWire, METH_VARARGS, Message_fromWire_doc },
+    { "from_wire", reinterpret_cast<PyCFunction>(Message_fromWire), METH_VARARGS, Message_fromWire_doc },
     { NULL, NULL, 0, NULL }
 };
 




More information about the bind10-changes mailing list