From: Martin Josefsson Date: Sat, 31 Jan 2004 19:33:47 +0000 (+0000) Subject: Minor codestyle fix X-Git-Tag: v1.3.0-rc1~140 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5065afa11159f4d8cfad672ac01f2958379fad4b;p=thirdparty%2Fiptables.git Minor codestyle fix --- diff --git a/ip6tables-restore.c b/ip6tables-restore.c index 77640816..01f5e165 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.14 2004/01/31 15:33:55 gandalf Exp $ + * $Id: ip6tables-restore.c,v 1.15 2004/01/31 19:28:13 gandalf Exp $ */ #include @@ -161,7 +161,8 @@ int main(int argc, char *argv[]) int ret; line++; - if (buffer[0] == '\n') continue; + if (buffer[0] == '\n') + continue; else if (buffer[0] == '#') { if (verbose) fputs(buffer, stdout); continue; diff --git a/iptables-restore.c b/iptables-restore.c index fdff5b45..de367b9f 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.28 2004/01/31 15:33:55 gandalf Exp $ + * $Id: iptables-restore.c,v 1.29 2004/01/31 19:28:13 gandalf Exp $ */ #include @@ -158,7 +158,8 @@ int main(int argc, char *argv[]) int ret = 0; line++; - if (buffer[0] == '\n') continue; + if (buffer[0] == '\n') + continue; else if (buffer[0] == '#') { if (verbose) fputs(buffer, stdout); continue;