diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2007-02-01 13:25:29 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2007-02-01 13:25:29 +0000 |
commit | 6590428ed3993f81f7696307fa275789505da1f3 (patch) | |
tree | f572668459b30a990cdc72e45d5844239efc4d9d /usr.sbin/ospfd/parse.y | |
parent | 8536f4d36e60ed7d85689af78a92ffc31efb7202 (diff) |
whitespace cleanup, no binary change.
Diffstat (limited to 'usr.sbin/ospfd/parse.y')
-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 efffc79fad0..660356e9631 100644 --- a/usr.sbin/ospfd/parse.y +++ b/usr.sbin/ospfd/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.42 2007/01/14 13:20:17 michele Exp $ */ +/* $OpenBSD: parse.y,v 1.43 2007/02/01 13:25:28 claudio Exp $ */ /* * Copyright (c) 2004, 2005 Esben Norby <norby@openbsd.org> @@ -264,7 +264,7 @@ conf_main : ROUTERID STRING { ; optlist : /* empty */ { $$ = DEFAULT_REDIST_METRIC; } - | SET option { $$ = $2; } + | SET option { $$ = $2; } | SET optnl '{' optnl optlist_l optnl '}' { $$ = $5; } ; |