diff options
author | Moritz Jodeit <moritz@cvs.openbsd.org> | 2005-08-02 18:26:50 +0000 |
---|---|---|
committer | Moritz Jodeit <moritz@cvs.openbsd.org> | 2005-08-02 18:26:50 +0000 |
commit | 0316aef1450e3a92f8cec1f5444bbd8953766433 (patch) | |
tree | eb5aa759c61c80d770a899108d8e401cfb001009 /sbin/dhclient | |
parent | 25db5322be88e677e9c25d4ae23f42b00981d7af (diff) |
add missing break; ok henning@
Diffstat (limited to 'sbin/dhclient')
-rw-r--r-- | sbin/dhclient/conflex.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/dhclient/conflex.c b/sbin/dhclient/conflex.c index 97eee35310b..5e601cc8490 100644 --- a/sbin/dhclient/conflex.c +++ b/sbin/dhclient/conflex.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conflex.c,v 1.9 2005/07/26 19:14:57 krw Exp $ */ +/* $OpenBSD: conflex.c,v 1.10 2005/08/02 18:26:49 moritz Exp $ */ /* Lexical scanner for dhcpd config file... */ @@ -338,6 +338,7 @@ intern(char *atom, int dfv) return (BOOTING); if (!strcasecmp(atom + 1, "oot-unknown-clients")) return (BOOT_UNKNOWN_CLIENTS); + break; case 'c': if (!strcasecmp(atom + 1, "lass")) return (CLASS); |