diff options
Diffstat (limited to 'networking/arping.c')
-rw-r--r-- | networking/arping.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/networking/arping.c b/networking/arping.c index 3fd54a287..f9967d81e 100644 --- a/networking/arping.c +++ b/networking/arping.c @@ -306,9 +306,9 @@ int arping_main(int argc UNUSED_PARAM, char **argv) /* Dad also sets quit_on_reply. * Advert also sets unsolicited. */ - opt_complementary = "=1:Df:AU"; - opt = getopt32(argv, "DUAqfbc:+w:I:s:", - &count, &str_timeout, &device, &source); + opt = getopt32(argv, "^" "DUAqfbc:+w:I:s:" "\0" "=1:Df:AU", + &count, &str_timeout, &device, &source + ); if (opt & 0x80) /* -w: timeout */ timeout_us = xatou_range(str_timeout, 0, INT_MAX/2000000) * 1000000 + 500000; //if (opt & 0x200) /* -s: source */ |