diff options
author | 2006-04-20 19:50:08 +0000 | |
---|---|---|
committer | 2006-04-20 19:50:08 +0000 | |
commit | e4599d018662490452ab4323b4700d160fcc6863 (patch) | |
tree | c543db6fc21b11908989afd59c4e6aeba191b822 | |
parent | add various tests for `rlog -r' (not enabled yet); OK ray@. (diff) | |
download | wireguard-openbsd-e4599d018662490452ab4323b4700d160fcc6863.tar.xz wireguard-openbsd-e4599d018662490452ab4323b4700d160fcc6863.zip |
list must be sorted
-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 } }; |