diff options
author | Simon Bertrang <simon@cvs.openbsd.org> | 2008-02-22 10:56:51 +0000 |
---|---|---|
committer | Simon Bertrang <simon@cvs.openbsd.org> | 2008-02-22 10:56:51 +0000 |
commit | 4a07609b2aefca96f4f92bf1f22e1bf21b2d0cd7 (patch) | |
tree | d816af2e0bd015ce6071bf8bff6bd91a457b8bee /usr.sbin | |
parent | 55ab70436c89f8ea78c48777bbd92601810e702e (diff) |
remove comma from type list, add missing semicolon for consistency
OK claudio@
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/ospfd/parse.y | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/ospfd/parse.y b/usr.sbin/ospfd/parse.y index 8d0f0f42ff9..bc2a9b463b9 100644 --- a/usr.sbin/ospfd/parse.y +++ b/usr.sbin/ospfd/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.59 2007/11/12 23:59:41 mpf Exp $ */ +/* $OpenBSD: parse.y,v 1.60 2008/02/22 10:56:50 simon Exp $ */ /* * Copyright (c) 2004, 2005 Esben Norby <norby@openbsd.org> @@ -126,7 +126,7 @@ typedef struct { %token ERROR %token <v.string> STRING %token <v.number> NUMBER -%type <v.number> yesno no optlist, optlist_l option demotecount +%type <v.number> yesno no optlist optlist_l option demotecount %type <v.string> string %% @@ -158,6 +158,7 @@ yesno : YES { $$ = 1; } no : /* empty */ { $$ = 0; } | NO { $$ = 1; } + ; varset : STRING '=' string { if (conf->opts & OSPFD_OPT_VERBOSE) |