diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-04-20 19:50:09 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-04-20 19:50:09 +0000 |
commit | 17a455fe2dc5fd0229b95f3ca227be03f911f0f5 (patch) | |
tree | f2fc97599b457d40b78b14d9be47e1f9cde15ecb /usr.sbin/dhcpd | |
parent | 63ea6a1272dfa4ad884c6481a4d1104af0ad1489 (diff) |
list must be sorted
Diffstat (limited to 'usr.sbin/dhcpd')
-rw-r--r-- | usr.sbin/dhcpd/conflex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/dhcpd/conflex.c b/usr.sbin/dhcpd/conflex.c index 64ed08595d9..fa0fe596485 100644 --- a/usr.sbin/dhcpd/conflex.c +++ b/usr.sbin/dhcpd/conflex.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conflex.c,v 1.7 2006/04/18 19:18:31 deraadt Exp $ */ +/* $OpenBSD: conflex.c,v 1.8 2006/04/20 19:50:08 deraadt Exp $ */ /* Lexical scanner for dhcpd config file... */ @@ -355,9 +355,9 @@ static const struct keywords { { "token-ring", TOK_TOKEN_RING }, { "uid", TOK_UID }, { "unknown-clients", TOK_UNKNOWN_CLIENTS }, - { "user-class", TOK_USER_CLASS }, { "use-host-decl-names", TOK_USE_HOST_DECL_NAMES }, { "use-lease-addr-for-default-route", TOK_USE_LEASE_ADDR_FOR_DEFAULT_ROUTE }, + { "user-class", TOK_USER_CLASS }, { "vendor-class", TOK_VENDOR_CLASS } }; |