diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2015-03-22 17:08:51 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2015-03-22 17:08:51 +0100 |
commit | 6d8ea1d50ec6088c51a61ab3e9f849b7845dce6b (patch) | |
tree | be76d98175269688454d6cee1033589e3fe206ad | |
parent | 6ca03f2dd82ee2a09f257fad7c2bf6898310c438 (diff) | |
download | busybox-w32-6d8ea1d50ec6088c51a61ab3e9f849b7845dce6b.tar.gz busybox-w32-6d8ea1d50ec6088c51a61ab3e9f849b7845dce6b.tar.bz2 busybox-w32-6d8ea1d50ec6088c51a61ab3e9f849b7845dce6b.zip |
ifupdown: shrink a message
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | networking/ifupdown.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/ifupdown.c b/networking/ifupdown.c index 9f2500331..606fc049f 100644 --- a/networking/ifupdown.c +++ b/networking/ifupdown.c | |||
@@ -1305,7 +1305,7 @@ int ifupdown_main(int argc UNUSED_PARAM, char **argv) | |||
1305 | /* Call the cmds function pointer, does either iface_up() or iface_down() */ | 1305 | /* Call the cmds function pointer, does either iface_up() or iface_down() */ |
1306 | cmds_ret = cmds(currif); | 1306 | cmds_ret = cmds(currif); |
1307 | if (cmds_ret == -1) { | 1307 | if (cmds_ret == -1) { |
1308 | bb_error_msg("don't seem to have all the variables for %s/%s", | 1308 | bb_error_msg("don't have all variables for %s/%s", |
1309 | liface, currif->address_family->name); | 1309 | liface, currif->address_family->name); |
1310 | any_failures = curr_failure = 1; | 1310 | any_failures = curr_failure = 1; |
1311 | } else if (cmds_ret == 0) { | 1311 | } else if (cmds_ret == 0) { |