]> git.ipfire.org Git - thirdparty/iptables.git/commitdiff
Minor codestyle fix
authorMartin Josefsson <gandalf@wlug.westbo.se>
Sat, 31 Jan 2004 19:33:47 +0000 (19:33 +0000)
committerMartin Josefsson <gandalf@wlug.westbo.se>
Sat, 31 Jan 2004 19:33:47 +0000 (19:33 +0000)
ip6tables-restore.c
iptables-restore.c

index 776408167a973883c5a0dae62042c5b3b43d4ec4..01f5e165955c7be0639e97e8b11f73f7574921df 100644 (file)
@@ -7,7 +7,7 @@
  *     Rusty Russell <rusty@linuxcare.com.au>
  * 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 <getopt.h>
@@ -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;
index fdff5b45c058d349ab24021db0c4126d73c54cbc..de367b9f117a0f2bdec5da430d64f1583f85c544 100644 (file)
@@ -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 <getopt.h>
@@ -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;