diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2004-02-26 13:54:51 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2004-02-26 13:54:51 +0000 |
commit | 8f7a65223ef60cf679511eed6084ba0d67d363e2 (patch) | |
tree | 296583d5b8677da5875548f4c9927f5e4dbd513a /usr.sbin | |
parent | 2174234402981deb3b259b1c5ca988f28be55ee4 (diff) |
No comma at the end of the keywords array. OK henning@
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/bgpd/parse.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bgpd/parse.y b/usr.sbin/bgpd/parse.y index ccd3386b085..e77a5193242 100644 --- a/usr.sbin/bgpd/parse.y +++ b/usr.sbin/bgpd/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.61 2004/02/26 09:53:58 claudio Exp $ */ +/* $OpenBSD: parse.y,v 1.62 2004/02/26 13:54:50 claudio Exp $ */ /* * Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -715,7 +715,7 @@ lookup(char *s) { "table", TABLE}, { "tcp", TCP}, { "to", TO}, - { "transit-AS", TRANSITAS}, + { "transit-AS", TRANSITAS} }; const struct keywords *p; |