diff options
author | 2017-10-14 15:40:40 +0000 | |
---|---|---|
committer | 2017-10-14 15:40:40 +0000 | |
commit | f80b56f67dbcc4ff17892401cbcf864ca3aeae99 (patch) | |
tree | cee7cc3afcb10e94cc34ea867b99d3e921d94950 | |
parent | Refactor parsing of hex sequences. Rename parse_X() (diff) | |
download | wireguard-openbsd-f80b56f67dbcc4ff17892401cbcf864ca3aeae99.tar.xz wireguard-openbsd-f80b56f67dbcc4ff17892401cbcf864ca3aeae99.zip |
Whitespace fix.
-rw-r--r-- | sbin/dhclient/clparse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/dhclient/clparse.c b/sbin/dhclient/clparse.c index 3b82b7628ce..ef8dff8be22 100644 --- a/sbin/dhclient/clparse.c +++ b/sbin/dhclient/clparse.c @@ -1,4 +1,4 @@ -/* $OpenBSD: clparse.c,v 1.140 2017/10/14 15:31:46 krw Exp $ */ +/* $OpenBSD: clparse.c,v 1.141 2017/10/14 15:40:40 krw Exp $ */ /* Parser for dhclient config and lease files. */ @@ -264,7 +264,7 @@ parse_client_statement(FILE *cfile, char *name) if (parse_option_list(cfile, &config->requested_option_count, config->requested_options) == 1) parse_semi(cfile); - break; + break; case TOK_REQUIRE: if (parse_option_list(cfile, &config->required_option_count, config->required_options) == 1) |