Comments polishing, no functional change.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39613 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Philippe Houdoin 2010-11-24 18:04:27 +00:00
parent de739bbef3
commit ce36f05450
1 changed files with 3 additions and 3 deletions

View File

@ -192,7 +192,7 @@ dhcp_message::NextOption(dhcp_option_cookie& cookie,
switch (cookie.state) {
case 1:
// iterate options from "options"
// options from "options"
bytesLeft = sizeof(options) - (cookie.next - options);
break;
@ -211,7 +211,7 @@ dhcp_message::NextOption(dhcp_option_cookie& cookie,
if (bytesLeft == 0) {
cookie.state++;
// handle option(s) overload in file and/or server_name fields.
// handle option overload in file and/or server_name fields.
switch (cookie.state) {
case 2:
// options from "file"
@ -230,7 +230,7 @@ dhcp_message::NextOption(dhcp_option_cookie& cookie,
break;
case 4:
// no more options
// no more place to look for options
return false;
}