From: Martin Josefsson Date: Sat, 31 Jan 2004 19:41:49 +0000 (+0000) Subject: Another minor codestyle fix X-Git-Tag: v1.3.0-rc1~139 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3673dcb1545a53d70cee3ad14d101fab33541990;p=thirdparty%2Fiptables.git Another minor codestyle fix --- diff --git a/ip6tables-restore.c b/ip6tables-restore.c index 01f5e165..287e8640 100644 --- a/ip6tables-restore.c +++ b/ip6tables-restore.c @@ -7,7 +7,7 @@ * Rusty Russell * This code is distributed under the terms of GNU GPL v2 * - * $Id: ip6tables-restore.c,v 1.15 2004/01/31 19:28:13 gandalf Exp $ + * $Id: ip6tables-restore.c,v 1.16 2004/01/31 19:33:47 gandalf Exp $ */ #include @@ -164,7 +164,8 @@ int main(int argc, char *argv[]) if (buffer[0] == '\n') continue; else if (buffer[0] == '#') { - if (verbose) fputs(buffer, stdout); + if (verbose) + fputs(buffer, stdout); continue; } else if ((strcmp(buffer, "COMMIT\n") == 0) && (in_table)) { DEBUGP("Calling commit\n"); diff --git a/iptables-restore.c b/iptables-restore.c index de367b9f..6ccf0b54 100644 --- a/iptables-restore.c +++ b/iptables-restore.c @@ -4,7 +4,7 @@ * * This code is distributed under the terms of GNU GPL v2 * - * $Id: iptables-restore.c,v 1.29 2004/01/31 19:28:13 gandalf Exp $ + * $Id: iptables-restore.c,v 1.30 2004/01/31 19:33:47 gandalf Exp $ */ #include @@ -161,7 +161,8 @@ int main(int argc, char *argv[]) if (buffer[0] == '\n') continue; else if (buffer[0] == '#') { - if (verbose) fputs(buffer, stdout); + if (verbose) + fputs(buffer, stdout); continue; } else if ((strcmp(buffer, "COMMIT\n") == 0) && (in_table)) { DEBUGP("Calling commit\n");