diff options
author | Denis Vlasenko | 2008-12-31 03:36:02 +0000 |
---|---|---|
committer | Denis Vlasenko | 2008-12-31 03:36:02 +0000 |
commit | 9b8f810d38a720bca94af864e2960de91aae3a29 (patch) | |
tree | 10732e1683a0bd01ff263625e1a677b4c0974be2 /networking/ip.c | |
parent | 9343da45d3f226cc8b45879ac8dbacac2911cdd8 (diff) | |
download | busybox-9b8f810d38a720bca94af864e2960de91aae3a29.zip busybox-9b8f810d38a720bca94af864e2960de91aae3a29.tar.gz |
Apply post 1.12.3 fixes, bump to 1.12.41_12_4
Diffstat (limited to 'networking/ip.c')
-rw-r--r-- | networking/ip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/ip.c b/networking/ip.c index 7dcddfd..fa60278 100644 --- a/networking/ip.c +++ b/networking/ip.c @@ -31,7 +31,7 @@ static int NORETURN ip_print_help(char **argv UNUSED_PARAM) static int ip_do(int (*ip_func)(char **argv), char **argv) { - argv = ip_parse_common_args(argv); + argv = ip_parse_common_args(argv + 1); return ip_func(argv); } |