diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2009-04-21 11:09:40 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2009-04-21 11:09:40 +0000 |
commit | 5e34ff29bcc870936ab18172f438a34d042d4e03 (patch) | |
tree | a5e7a528f2f916eb883f1161eadceacdf2dca4be /networking/ping.c | |
parent | 8b814b4a349e2262c0ad25793b05206a14651ebb (diff) | |
download | busybox-w32-5e34ff29bcc870936ab18172f438a34d042d4e03.tar.gz busybox-w32-5e34ff29bcc870936ab18172f438a34d042d4e03.tar.bz2 busybox-w32-5e34ff29bcc870936ab18172f438a34d042d4e03.zip |
*: mass renaming of USE_XXXX to IF_XXXX
and SKIP_XXXX to IF_NOT_XXXX - the second one was especially
badly named. It was not skipping anything!
Diffstat (limited to 'networking/ping.c')
-rw-r--r-- | networking/ping.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/ping.c b/networking/ping.c index f2a612fde..71b2a4be8 100644 --- a/networking/ping.c +++ b/networking/ping.c | |||
@@ -224,7 +224,7 @@ int ping_main(int argc UNUSED_PARAM, char **argv) | |||
224 | 224 | ||
225 | /* full(er) version */ | 225 | /* full(er) version */ |
226 | 226 | ||
227 | #define OPT_STRING ("qvc:s:w:W:I:4" USE_PING6("6")) | 227 | #define OPT_STRING ("qvc:s:w:W:I:4" IF_PING6("6")) |
228 | enum { | 228 | enum { |
229 | OPT_QUIET = 1 << 0, | 229 | OPT_QUIET = 1 << 0, |
230 | OPT_VERBOSE = 1 << 1, | 230 | OPT_VERBOSE = 1 << 1, |