]> git.proxmox.com Git - mirror_iproute2.git/commitdiff
tc: m_xt: Fix indenting
authorPhil Sutter <phil@nwl.cc>
Fri, 10 Jun 2016 11:42:02 +0000 (13:42 +0200)
committerStephen Hemminger <shemming@brocade.com>
Tue, 14 Jun 2016 21:35:56 +0000 (14:35 -0700)
By exiting early if xtables_find_target() fails, one indenting level can
be dropped. Some of the wrongly indented code then happens to sit at the
right spot by accident which is why this patch is smaller than expected.

Signed-off-by: Phil Sutter <phil@nwl.cc>
tc/m_xt.c

index 45d86d66248d41d92f0a7dba63dbbf25c997215c..5a629c442ac3ab16a0507d421cd17f985b153ce2 100644 (file)
--- a/tc/m_xt.c
+++ b/tc/m_xt.c
@@ -161,12 +161,15 @@ static int parse_ipt(struct action_util *a, int *argc_p,
                switch (c) {
                case 'j':
                        m = xtables_find_target(optarg, XTF_TRY_LOAD);
-                       if (m != NULL) {
+                       if (!m) {
+                               fprintf(stderr, " failed to find target %s\n\n", optarg);
+                               return -1;
+                       }
 
-                               if (build_st(m, NULL) < 0) {
-                                       printf(" %s error\n", m->name);
-                                       return -1;
-                               }
+                       if (build_st(m, NULL) < 0) {
+                               printf(" %s error\n", m->name);
+                               return -1;
+                       }
 #if (XTABLES_VERSION_CODE >= 6)
                        opts = xtables_options_xfrm(tmp_tcipt_globals.orig_opts,
                                                    tmp_tcipt_globals.opts,
@@ -182,22 +185,18 @@ static int parse_ipt(struct action_util *a, int *argc_p,
                                return -1;
                        } else
                                tmp_tcipt_globals.opts = opts;
-                       } else {
-                               fprintf(stderr, " failed to find target %s\n\n", optarg);
-                               return -1;
-                       }
                        ok++;
                        break;
 
                default:
                        memset(&fw, 0, sizeof(fw));
 #if (XTABLES_VERSION_CODE >= 6)
-               if (m != NULL && m->x6_parse != NULL) {
-                       xtables_option_tpcall(c, argv, 0, m, NULL);
+                       if (m != NULL && m->x6_parse != NULL) {
+                               xtables_option_tpcall(c, argv, 0, m, NULL);
 #else
-               if (m != NULL && m->parse != NULL) {
-                       m->parse(c - m->option_offset, argv, 0, &m->tflags,
-                                NULL, &m->t);
+                       if (m != NULL && m->parse != NULL) {
+                               m->parse(c - m->option_offset, argv, 0,
+                                        &m->tflags, NULL, &m->t);
 #endif
                        } else {
                                fprintf(stderr, "failed to find target %s\n\n", optarg);
@@ -339,11 +338,15 @@ print_ipt(struct action_util *au, FILE * f, struct rtattr *arg)
 
                t = RTA_DATA(tb[TCA_IPT_TARG]);
                m = xtables_find_target(t->u.user.name, XTF_TRY_LOAD);
-               if (m != NULL) {
-                       if (build_st(m, t) < 0) {
-                               fprintf(stderr, " %s error\n", m->name);
-                               return -1;
-                       }
+               if (!m) {
+                       fprintf(stderr, " failed to find target %s\n\n",
+                               t->u.user.name);
+                       return -1;
+               }
+               if (build_st(m, t) < 0) {
+                       fprintf(stderr, " %s error\n", m->name);
+                       return -1;
+               }
 
 #if (XTABLES_VERSION_CODE >= 6)
                opts = xtables_options_xfrm(tmp_tcipt_globals.orig_opts,
@@ -355,16 +358,11 @@ print_ipt(struct action_util *au, FILE * f, struct rtattr *arg)
                                             m->extra_opts,
                                             &m->option_offset);
 #endif
-       if (opts == NULL) {
-               fprintf(stderr, " failed to find additional options for target %s\n\n", optarg);
-               return -1;
-       } else
-               tmp_tcipt_globals.opts = opts;
-               } else {
-                       fprintf(stderr, " failed to find target %s\n\n",
-                               t->u.user.name);
+               if (opts == NULL) {
+                       fprintf(stderr, " failed to find additional options for target %s\n\n", optarg);
                        return -1;
-               }
+               } else
+                       tmp_tcipt_globals.opts = opts;
                fprintf(f, "\ttarget ");
                m->print(NULL, m->t, 0);
                if (tb[TCA_IPT_INDEX] == NULL) {