diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2007-03-22 15:56:53 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2007-03-22 15:56:53 +0000 |
commit | 5d4ab88241a86ed84025e5414fffcd6e2da5f7b7 (patch) | |
tree | d8c32274f6a0c0fad6a0c7b121ec830a9a3ed3e5 /usr.sbin/ospfd | |
parent | 47576829003beb824202213951418266d8ee8946 (diff) |
Somehow I forgot how to correctly sort in alphabetical order.
"router" needs to be added before "router-dead-time".
Figured out by Stuart Henderson
Diffstat (limited to 'usr.sbin/ospfd')
-rw-r--r-- | usr.sbin/ospfd/parse.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ospfd/parse.y b/usr.sbin/ospfd/parse.y index 72c04b388ac..ae1d1e9ad5e 100644 --- a/usr.sbin/ospfd/parse.y +++ b/usr.sbin/ospfd/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.45 2007/03/21 10:54:30 claudio Exp $ */ +/* $OpenBSD: parse.y,v 1.46 2007/03/22 15:56:52 claudio Exp $ */ /* * Copyright (c) 2004, 2005 Esben Norby <norby@openbsd.org> @@ -595,8 +595,8 @@ lookup(char *s) {"redistribute", REDISTRIBUTE}, {"retransmit-interval", RETRANSMITINTERVAL}, {"rfc1583compat", RFC1583COMPAT}, - {"router-dead-time", ROUTERDEADTIME}, {"router", ROUTER}, + {"router-dead-time", ROUTERDEADTIME}, {"router-id", ROUTERID}, {"router-priority", ROUTERPRIORITY}, {"rtlabel", RTLABEL}, |