diff options
author | 2004-01-24 19:43:37 +0000 | |
---|---|---|
committer | 2004-01-24 19:43:37 +0000 | |
commit | 2bd15530437012b01aa844b3dda99a6e99678833 (patch) | |
tree | 61dbdb52f8bb031af723e31d9ed0f6780d5b4c30 | |
parent | Remove unused terminals. (diff) | |
download | wireguard-openbsd-2bd15530437012b01aa844b3dda99a6e99678833.tar.xz wireguard-openbsd-2bd15530437012b01aa844b3dda99a6e99678833.zip |
eek, no, ERROR is of course not unused
-rw-r--r-- | usr.sbin/bgpd/parse.y | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/bgpd/parse.y b/usr.sbin/bgpd/parse.y index 5ca358fedf3..96a38c7cba0 100644 --- a/usr.sbin/bgpd/parse.y +++ b/usr.sbin/bgpd/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.38 2004/01/24 19:26:12 mcbride Exp $ */ +/* $OpenBSD: parse.y,v 1.39 2004/01/24 19:43:37 henning Exp $ */ /* * Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -92,6 +92,7 @@ typedef struct { %token REMOTEAS DESCR LOCALADDR MULTIHOP PASSIVE MAXPREFIX ANNOUNCE %token DUMP MSG IN TABLE %token LOG UPDATES +%token ERROR %token <v.string> STRING %type <v.number> number optnumber yesno %type <v.string> string |