BIND 10 master, updated. b22ff2de4d9421bd1ef3976967aee886c8811611 Default values are now in range of uintX_t (Compilation fix for Solaris).

BIND 10 source code commits bind10-changes at lists.isc.org
Wed May 9 10:36:28 UTC 2012


The branch, master has been updated
       via  b22ff2de4d9421bd1ef3976967aee886c8811611 (commit)
      from  409ca483d117688be552d27d1e06616d44701c82 (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 b22ff2de4d9421bd1ef3976967aee886c8811611
Author: Tomek Mrugalski <tomasz at isc.org>
Date:   Wed May 9 12:35:54 2012 +0200

    Default values are now in range of uintX_t (Compilation fix for Solaris).

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

Summary of changes:
 src/lib/dhcp/pkt6.cc |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

-----------------------------------------------------------------------
diff --git a/src/lib/dhcp/pkt6.cc b/src/lib/dhcp/pkt6.cc
index bf283c0..7bc182f 100644
--- a/src/lib/dhcp/pkt6.cc
+++ b/src/lib/dhcp/pkt6.cc
@@ -32,10 +32,10 @@ Pkt6::Pkt6(unsigned int dataLen, DHCPv6Proto proto /* = UDP */)
      remote_addr_("::"),
      iface_(""),
      ifindex_(-1),
-     local_port_(-1),
-     remote_port_(-1),
+     local_port_(0),
+     remote_port_(0),
      proto_(proto),
-     msg_type_(-1),
+     msg_type_(0),
      transid_(rand()%0xffffff)
 {
 



More information about the bind10-changes mailing list