aboutsummaryrefslogtreecommitdiff
path: root/coreutils/tail.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2009-04-21 11:09:40 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2009-04-21 11:09:40 +0000
commit5e34ff29bcc870936ab18172f438a34d042d4e03 (patch)
treea5e7a528f2f916eb883f1161eadceacdf2dca4be /coreutils/tail.c
parent8b814b4a349e2262c0ad25793b05206a14651ebb (diff)
downloadbusybox-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 'coreutils/tail.c')
-rw-r--r--coreutils/tail.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/coreutils/tail.c b/coreutils/tail.c
index 5dae2d35b..3ce6be0bd 100644
--- a/coreutils/tail.c
+++ b/coreutils/tail.c
@@ -110,9 +110,9 @@ int tail_main(int argc, char **argv)
110 } 110 }
111#endif 111#endif
112 112
113 USE_FEATURE_FANCY_TAIL(opt_complementary = "s+";) /* -s N */ 113 IF_FEATURE_FANCY_TAIL(opt_complementary = "s+";) /* -s N */
114 opt = getopt32(argv, "fc:n:" USE_FEATURE_FANCY_TAIL("qs:v"), 114 opt = getopt32(argv, "fc:n:" IF_FEATURE_FANCY_TAIL("qs:v"),
115 &str_c, &str_n USE_FEATURE_FANCY_TAIL(,&sleep_period)); 115 &str_c, &str_n IF_FEATURE_FANCY_TAIL(,&sleep_period));
116#define FOLLOW (opt & 0x1) 116#define FOLLOW (opt & 0x1)
117#define COUNT_BYTES (opt & 0x2) 117#define COUNT_BYTES (opt & 0x2)
118 //if (opt & 0x1) // -f 118 //if (opt & 0x1) // -f