Browse Source

Compilation fix for Solaris 10 (in pkt6.cc)

Tomek Mrugalski 13 years ago
parent
commit
c09c891d2c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/dhcp/pkt6.cc

+ 1 - 1
src/lib/dhcp/pkt6.cc

@@ -27,7 +27,7 @@ namespace dhcp {
 
 Pkt6::Pkt6(const uint8_t* buf, uint32_t buf_len, DHCPv6Proto proto /* = UDP */) :
     proto_(proto),
-    msg_type_(-1),
+    msg_type_(0),
     transid_(rand()%0xffffff),
     iface_(""),
     ifindex_(-1),