aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2003-08-29 10:58:46 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2003-08-29 10:58:46 +0000
commit08dea3e5a71bbdbf3bb123ff05c521eb152c690a (patch)
treea6bf9c8c06b3a07093d475a0b7695702d6ae6a2f
parent62b031fb8283e625cd45ba910ded0338c7c147da (diff)
downloadbusybox-w32-08dea3e5a71bbdbf3bb123ff05c521eb152c690a.tar.gz
busybox-w32-08dea3e5a71bbdbf3bb123ff05c521eb152c690a.tar.bz2
busybox-w32-08dea3e5a71bbdbf3bb123ff05c521eb152c690a.zip
"This function was not updating the argc and argv pointers to reflect
the arguments it consumed, which means the calling function encountered them as well. As a result, a command like "ip -6 addr" was yielding a usage error." - Philip Blundell
-rw-r--r--networking/libiproute/ip_parse_common_args.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/networking/libiproute/ip_parse_common_args.c b/networking/libiproute/ip_parse_common_args.c
index 21e9f74ba..1f3d73933 100644
--- a/networking/libiproute/ip_parse_common_args.c
+++ b/networking/libiproute/ip_parse_common_args.c
@@ -71,4 +71,6 @@ void ip_parse_common_args(int *argcp, char ***argvp)
71 argc--; argv++; 71 argc--; argv++;
72 } 72 }
73 _SL_ = oneline ? "\\" : "\n" ; 73 _SL_ = oneline ? "\\" : "\n" ;
74 *argcp = argc;
75 *argvp = argv;
74} 76}