As per kernel coding style switch and case should be at the same
identation.

Signed-off-by: Arushi Singhal <[email protected]>
---
 iptables/ip6tables-restore.c | 62 ++++++++++++++++++++++----------------------
 1 file changed, 31 insertions(+), 31 deletions(-)

diff --git a/iptables/ip6tables-restore.c b/iptables/ip6tables-restore.c
index 8a47f09..24ea5ec 100644
--- a/iptables/ip6tables-restore.c
+++ b/iptables/ip6tables-restore.c
@@ -215,37 +215,37 @@ int ip6tables_restore_main(int argc, char *argv[])
 
        while ((c = getopt_long(argc, argv, "bcvthnwWM:T:", options, NULL)) != 
-1) {
                switch (c) {
-                       case 'b':
-                               fprintf(stderr, "-b/--binary option is not 
implemented\n");
-                               break;
-                       case 'c':
-                               counters = 1;
-                               break;
-                       case 'v':
-                               verbose = 1;
-                               break;
-                       case 't':
-                               testing = 1;
-                               break;
-                       case 'h':
-                               print_usage("ip6tables-restore",
-                                           IPTABLES_VERSION);
-                               break;
-                       case 'n':
-                               noflush = 1;
-                               break;
-                       case 'w':
-                               wait = parse_wait_time(argc, argv);
-                               break;
-                       case 'W':
-                               parse_wait_interval(argc, argv, &wait_interval);
-                               break;
-                       case 'M':
-                               xtables_modprobe_program = optarg;
-                               break;
-                       case 'T':
-                               tablename = optarg;
-                               break;
+               case 'b':
+                       fprintf(stderr, "-b/--binary option is not 
implemented\n");
+                       break;
+               case 'c':
+                       counters = 1;
+                       break;
+               case 'v':
+                       verbose = 1;
+                       break;
+               case 't':
+                       testing = 1;
+                       break;
+               case 'h':
+                       print_usage("ip6tables-restore",
+                                   IPTABLES_VERSION);
+                       break;
+               case 'n':
+                       noflush = 1;
+                       break;
+               case 'w':
+                       wait = parse_wait_time(argc, argv);
+                       break;
+               case 'W':
+                       parse_wait_interval(argc, argv, &wait_interval);
+                       break;
+               case 'M':
+                       xtables_modprobe_program = optarg;
+                       break;
+               case 'T':
+                       tablename = optarg;
+                       break;
                }
        }
 
-- 
2.11.0

--
To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to