aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-12-07 12:18:36 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-12-07 12:18:36 +0000
commit1819eee436198b52c30bfdd4a15fb3c6a5f2aef1 (patch)
tree37710ab9f1522ec3f763822fbc4e527b6a6f2e2b
parent95da177b0952375d4ac1764e5e94e690ea330779 (diff)
downloadbusybox-w32-1819eee436198b52c30bfdd4a15fb3c6a5f2aef1.tar.gz
busybox-w32-1819eee436198b52c30bfdd4a15fb3c6a5f2aef1.tar.bz2
busybox-w32-1819eee436198b52c30bfdd4a15fb3c6a5f2aef1.zip
- Improve wording in error message.
-rw-r--r--networking/libiproute/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/libiproute/utils.c b/networking/libiproute/utils.c
index e6085319c..fc6aff1d1 100644
--- a/networking/libiproute/utils.c
+++ b/networking/libiproute/utils.c
@@ -255,7 +255,7 @@ void duparg(char *key, char *arg)
255 255
256void duparg2(char *key, char *arg) 256void duparg2(char *key, char *arg)
257{ 257{
258 bb_error_msg("either \"%s\" is duplicate, or \"%s\" is a garbage", key, arg); 258 bb_error_msg("either \"%s\" is duplicate, or \"%s\" is garbage", key, arg);
259 exit(-1); 259 exit(-1);
260} 260}
261 261