diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2014-01-10 01:38:16 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2014-01-10 01:38:16 +0000 |
commit | dfe47c82f5e39dbbdf84ff8f4b45bdbe0f56eb06 (patch) | |
tree | 20d9ef93467da4f235db0b6e7d5d2a3eb8bd38a7 /sbin/dhclient | |
parent | 81dfc7946f4ac12285fba0227369a3c80e398a84 (diff) |
Yet another annoyingly long line.
Diffstat (limited to 'sbin/dhclient')
-rw-r--r-- | sbin/dhclient/parse.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sbin/dhclient/parse.c b/sbin/dhclient/parse.c index 6814a2fdf83..387a355cd3f 100644 --- a/sbin/dhclient/parse.c +++ b/sbin/dhclient/parse.c @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.c,v 1.28 2013/12/06 23:40:48 krw Exp $ */ +/* $OpenBSD: parse.c,v 1.29 2014/01/10 01:38:15 krw Exp $ */ /* Common parser code for dhcpd and dhclient. */ @@ -210,7 +210,8 @@ parse_numeric_aggregate(FILE *cfile, unsigned char *buf, int max, int separator, token = next_token(&val, cfile); - if (token == TOK_NUMBER || (base == 16 && token == TOK_NUMBER_OR_NAME)) + if (token == TOK_NUMBER || (base == 16 && token == + TOK_NUMBER_OR_NAME)) /* XXX Need to check if conversion was successful. */ convert_num(buf, val, base, 8); else |