ifupdown: simple code shrink

function                                             old     new   delta
execute                                              631     607     -24

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2012-11-05 13:22:56 +01:00
parent d2d5049c1d
commit 11181335f9

View File

@ -259,7 +259,7 @@ static char *parse(const char *command, struct interface_defn_t *ifd)
opt_depth++;
command += 2;
} else {
addstr(&result, "[", 1);
addstr(&result, command, 1);
command++;
}
break;
@ -271,7 +271,7 @@ static char *parse(const char *command, struct interface_defn_t *ifd)
}
command += 2;
} else {
addstr(&result, "]", 1);
addstr(&result, command, 1);
command++;
}
break;