Browse Source

[2749] Minor comment change.

Stephen Morris 11 years ago
parent
commit
6b3bc78d60
1 changed files with 1 additions and 2 deletions
  1. 1 2
      src/bin/dhcp6/dhcp6_srv.cc

+ 1 - 2
src/bin/dhcp6/dhcp6_srv.cc

@@ -604,8 +604,7 @@ Dhcpv6Srv::generateServerID() {
         seconds -= DUID_TIME_EPOCH;
 
         OptionBuffer srvid(8 + iface->getMacLen());
-        // We know that the buffer is at least 8 bytes long at this
-        // point.
+        // We know that the buffer is more than 8 bytes long at this point.
         writeUint16(DUID::DUID_LLT, &srvid[0], 2);
         writeUint16(HWTYPE_ETHERNET, &srvid[2], 2);
         writeUint32(static_cast<uint32_t>(seconds), &srvid[4], 4);