diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2003-12-25 23:23:52 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2003-12-25 23:23:52 +0000 |
commit | b82f317239ca4196a37d1f0479e64c5618f840c4 (patch) | |
tree | 3e81b28cf0531c5a6c6b70d5f6085348bf9f490f /usr.sbin/bgpd/parse.y | |
parent | 04caca02d32d49591e39b12c20bbff3856cf7f16 (diff) |
style
Diffstat (limited to 'usr.sbin/bgpd/parse.y')
-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 586cc6ff6a6..5e12c1d5e7a 100644 --- a/usr.sbin/bgpd/parse.y +++ b/usr.sbin/bgpd/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.17 2003/12/25 18:35:17 henning Exp $ */ +/* $OpenBSD: parse.y,v 1.18 2003/12/25 23:23:51 henning Exp $ */ /* * Copyright (c) 2002, 2003 Henning Brauer <henning@openbsd.org> @@ -563,7 +563,7 @@ parse_config(char *filename, struct bgpd_config *xconf, yyparse(); /* Free macros and check which have not been used. */ - for(sym = TAILQ_FIRST(&symhead); sym != NULL; sym = next) { + for (sym = TAILQ_FIRST(&symhead); sym != NULL; sym = next) { next = TAILQ_NEXT(sym, entries); if ((conf->opts & BGPD_OPT_VERBOSE2) && !sym->used) fprintf(stderr, "warning: macro '%s' not " |