diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-22 13:56:36 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-22 13:56:36 +0000 |
commit | 0849207ce049a4ff0287ff5c03d24611e5340e2a (patch) | |
tree | ebc86b4456711b1aa8905894432e544df28e2d63 /coreutils/tail.c | |
parent | c5cb38f4d9fa90fdd01ea258390d0059138616b5 (diff) | |
download | busybox-w32-0849207ce049a4ff0287ff5c03d24611e5340e2a.tar.gz busybox-w32-0849207ce049a4ff0287ff5c03d24611e5340e2a.tar.bz2 busybox-w32-0849207ce049a4ff0287ff5c03d24611e5340e2a.zip |
convert "negaite" config option into reversed (INCLUDE_SUSv2)
Diffstat (limited to 'coreutils/tail.c')
-rw-r--r-- | coreutils/tail.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/tail.c b/coreutils/tail.c index 2182b0936..b690b370e 100644 --- a/coreutils/tail.c +++ b/coreutils/tail.c | |||
@@ -101,7 +101,7 @@ int tail_main(int argc, char **argv) | |||
101 | char *s, *buf; | 101 | char *s, *buf; |
102 | const char *fmt; | 102 | const char *fmt; |
103 | 103 | ||
104 | #if !ENABLE_DEBUG_YANK_SUSv2 || ENABLE_FEATURE_FANCY_TAIL | 104 | #if ENABLE_INCLUDE_SUSv2 || ENABLE_FEATURE_FANCY_TAIL |
105 | /* Allow legacy syntax of an initial numeric option without -n. */ | 105 | /* Allow legacy syntax of an initial numeric option without -n. */ |
106 | if (argc >= 2 && (argv[1][0] == '+' || argv[1][0] == '-') | 106 | if (argc >= 2 && (argv[1][0] == '+' || argv[1][0] == '-') |
107 | && isdigit(argv[1][1]) | 107 | && isdigit(argv[1][1]) |
@@ -121,7 +121,7 @@ int tail_main(int argc, char **argv) | |||
121 | count_bytes = 1; | 121 | count_bytes = 1; |
122 | /* FALLS THROUGH */ | 122 | /* FALLS THROUGH */ |
123 | case 'n': | 123 | case 'n': |
124 | #if !ENABLE_DEBUG_YANK_SUSv2 || ENABLE_FEATURE_FANCY_TAIL | 124 | #if ENABLE_INCLUDE_SUSv2 || ENABLE_FEATURE_FANCY_TAIL |
125 | GET_COUNT: | 125 | GET_COUNT: |
126 | #endif | 126 | #endif |
127 | from_top = 0; | 127 | from_top = 0; |