diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2003-07-21 22:31:37 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2003-07-21 22:31:37 +0000 |
commit | 0169217f25a8423bc6243b9a9dfc0702c793ef6e (patch) | |
tree | 203ff2a6ed0915d980ea10ac795aea2fbe43f187 /sbin | |
parent | 59df9b09981805ebbea8c3713be919b4590fa9aa (diff) |
KNF
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/pfctl/pfctl_parser.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/pfctl/pfctl_parser.c b/sbin/pfctl/pfctl_parser.c index 0ab6ea0d908..dc8a3bf23fd 100644 --- a/sbin/pfctl/pfctl_parser.c +++ b/sbin/pfctl/pfctl_parser.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pfctl_parser.c,v 1.170 2003/07/19 13:08:58 cedric Exp $ */ +/* $OpenBSD: pfctl_parser.c,v 1.171 2003/07/21 22:31:36 henning Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -782,7 +782,7 @@ print_tabledef(const char *name, int flags, int addrs, continue; } printf(" {"); - for(;;) { + for (;;) { for (h = ti->host; h != NULL; h = h->next) { printf(h->not ? " !" : " "); print_addr(&h->addr, h->af, 0); |