[git commit] ifupdown: simple code shrink
Denys Vlasenko
vda.linux at googlemail.com
Mon Nov 5 12:22:56 UTC 2012
commit: http://git.busybox.net/busybox/commit/?id=11181335f9a97feddb30da4d09f9cd3739b8badd
branch: http://git.busybox.net/busybox/commit/?id=refs/heads/master
function old new delta
execute 631 607 -24
Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
networking/ifupdown.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/networking/ifupdown.c b/networking/ifupdown.c
index ad0a997..9fc1266 100644
--- a/networking/ifupdown.c
+++ b/networking/ifupdown.c
@@ -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;
More information about the busybox-cvs
mailing list