summaryrefslogtreecommitdiff
path: root/sbin/dhclient/parse.c
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2013-05-02 16:35:28 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2013-05-02 16:35:28 +0000
commit8d9f399f7f91f12b17648750f292c377bfbbb3bf (patch)
tree50c9df89147f3f84e406832b86eb45963f3bf474 /sbin/dhclient/parse.c
parent3a4fe79c2140b22104c6748e938e2cf520e5ee36 (diff)
Bunch of comment/whitespace cleanup. Eliminate some misleading or
pointless ones, make multiline comments readable, nuke '...' in favour of '.', etc.
Diffstat (limited to 'sbin/dhclient/parse.c')
-rw-r--r--sbin/dhclient/parse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/dhclient/parse.c b/sbin/dhclient/parse.c
index f9b4b22f077..215d9cb795e 100644
--- a/sbin/dhclient/parse.c
+++ b/sbin/dhclient/parse.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.c,v 1.23 2013/04/27 17:54:24 krw Exp $ */
+/* $OpenBSD: parse.c,v 1.24 2013/05/02 16:35:27 krw Exp $ */
/* Common parser code for dhcpd and dhclient. */
@@ -265,7 +265,7 @@ convert_num(unsigned char *buf, char *str, int base, int size)
do {
tval = *ptr++;
- /* XXX assumes ASCII... */
+ /* XXX assumes ASCII. */
if (tval >= 'a')
tval = tval - 'a' + 10;
else if (tval >= 'A')