summaryrefslogtreecommitdiffstats
path: root/usr.sbin/dhcpd/conflex.c
diff options
context:
space:
mode:
authorkrw <krw@openbsd.org>2005-11-25 16:24:12 +0000
committerkrw <krw@openbsd.org>2005-11-25 16:24:12 +0000
commit14f41f257c42aa66579236e5384479dd16dd3504 (patch)
treea38694baa31e00fa9795dcf9aa0a2e9c7d1e57ff /usr.sbin/dhcpd/conflex.c
parentadd support for `-kmode'; (diff)
downloadwireguard-openbsd-14f41f257c42aa66579236e5384479dd16dd3504.tar.xz
wireguard-openbsd-14f41f257c42aa66579236e5384479dd16dd3504.zip
Missing 'break;' found by lint. 'blass' is not the same as 'class'!
ok moritz@ otto@
Diffstat (limited to 'usr.sbin/dhcpd/conflex.c')
-rw-r--r--usr.sbin/dhcpd/conflex.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/dhcpd/conflex.c b/usr.sbin/dhcpd/conflex.c
index b5d087395e3..213cc84853a 100644
--- a/usr.sbin/dhcpd/conflex.c
+++ b/usr.sbin/dhcpd/conflex.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: conflex.c,v 1.5 2005/07/26 19:14:57 krw Exp $ */
+/* $OpenBSD: conflex.c,v 1.6 2005/11/25 16:24:12 krw Exp $ */
/* Lexical scanner for dhcpd config file... */
@@ -339,6 +339,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);