Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2015-03-22 19:08:51 +0300
committerDenys Vlasenko <vda.linux@googlemail.com>2015-03-22 19:08:51 +0300
commit6d8ea1d50ec6088c51a61ab3e9f849b7845dce6b (patch)
treebe76d98175269688454d6cee1033589e3fe206ad /networking
parent6ca03f2dd82ee2a09f257fad7c2bf6898310c438 (diff)
ifupdown: shrink a message
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking')
-rw-r--r--networking/ifupdown.c2
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)
/* Call the cmds function pointer, does either iface_up() or iface_down() */
cmds_ret = cmds(currif);
if (cmds_ret == -1) {
- bb_error_msg("don't seem to have all the variables for %s/%s",
+ bb_error_msg("don't have all variables for %s/%s",
liface, currif->address_family->name);
any_failures = curr_failure = 1;
} else if (cmds_ret == 0) {