Browse Source

[master] fix misspelling typo in comment

Jeremy C. Reed 11 years ago
parent
commit
68d52986f1
1 changed files with 4 additions and 4 deletions
  1. 4 4
      src/bin/dhcp4/dhcp4_srv.cc

+ 4 - 4
src/bin/dhcp4/dhcp4_srv.cc

@@ -873,10 +873,10 @@ Dhcpv4Srv::processClientFqdnOption(const Option4ClientFqdnPtr& fqdn,
     // perform DNS updates:
     // 1. Updates are globally disabled,
     // 2. Client requested no update and server respects it,
-    // 3. Client requested that the foward DNS update is delegated to the client
-    //    but server neither respects requests for forward update delegation nor
-    //    it is configured to send update on its own when client requested
-    //    delegation.
+    // 3. Client requested that the forward DNS update is delegated to the
+    //    client but server neither respects requests for forward update
+    //    delegation nor it is configured to send update on its own when
+    //    client requested delegation.
     if (!FQDN_ENABLE_UPDATE ||
         (fqdn->getFlag(Option4ClientFqdn::FLAG_N) &&
          !FQDN_OVERRIDE_NO_UPDATE) ||