aboutsummaryrefslogtreecommitdiff
path: root/networking/libiproute/iptunnel.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2004-04-26 19:32:49 +0000
committerEric Andersen <andersen@codepoet.org>2004-04-26 19:32:49 +0000
commitf71ad6c9e487dc853ba6f7e1c238efdd4ed140a8 (patch)
tree2abf79e40261b349e69a1e4781cc901c0db70409 /networking/libiproute/iptunnel.c
parent51ba90ef51afbf234c494209278e9b11fad8605e (diff)
downloadbusybox-f71ad6c9e487dc853ba6f7e1c238efdd4ed140a8.tar.gz
Thomas Koeller writes:
Hi, the following output is from BusyBox 1.0.0-pre10: ~ # ip link help ip: Command "help" is unknown, try "ip link help". tk This patch fixes it by removing the advertisements for the "ip blah help" stuff that is not implemented.
Diffstat (limited to 'networking/libiproute/iptunnel.c')
-rw-r--r--networking/libiproute/iptunnel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/libiproute/iptunnel.c b/networking/libiproute/iptunnel.c
index 3f5d05ae9..f8713e08b 100644
--- a/networking/libiproute/iptunnel.c
+++ b/networking/libiproute/iptunnel.c
@@ -543,6 +543,6 @@ int do_iptunnel(int argc, char **argv)
} else
return do_show(0, NULL);
- bb_error_msg("Command \"%s\" is unknown, try \"ip tunnel help\".", *argv);
+ bb_error_msg("Command \"%s\" is unknown.", *argv);
exit(-1);
}