aboutsummaryrefslogtreecommitdiff
path: root/coreutils/head.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-12-22 13:56:36 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-12-22 13:56:36 +0000
commit0849207ce049a4ff0287ff5c03d24611e5340e2a (patch)
treeebc86b4456711b1aa8905894432e544df28e2d63 /coreutils/head.c
parentc5cb38f4d9fa90fdd01ea258390d0059138616b5 (diff)
downloadbusybox-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/head.c')
-rw-r--r--coreutils/head.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/coreutils/head.c b/coreutils/head.c
index f2c948300..56e7a960c 100644
--- a/coreutils/head.c
+++ b/coreutils/head.c
@@ -47,7 +47,7 @@ int head_main(int argc, char **argv)
47 int c; 47 int c;
48 int retval = EXIT_SUCCESS; 48 int retval = EXIT_SUCCESS;
49 49
50#if !ENABLE_DEBUG_YANK_SUSv2 || ENABLE_FEATURE_FANCY_HEAD 50#if ENABLE_INCLUDE_SUSv2 || ENABLE_FEATURE_FANCY_HEAD
51 /* Allow legacy syntax of an initial numeric option without -n. */ 51 /* Allow legacy syntax of an initial numeric option without -n. */
52 if (argc > 1 && argv[1][0] == '-' 52 if (argc > 1 && argv[1][0] == '-'
53 && isdigit(argv[1][1]) 53 && isdigit(argv[1][1])
@@ -75,8 +75,8 @@ int head_main(int argc, char **argv)
75#endif 75#endif
76 case 'n': 76 case 'n':
77 p = optarg; 77 p = optarg;
78#if !ENABLE_DEBUG_YANK_SUSv2 || ENABLE_FEATURE_FANCY_HEAD 78#if ENABLE_INCLUDE_SUSv2 || ENABLE_FEATURE_FANCY_HEAD
79 GET_COUNT: 79 GET_COUNT:
80#endif 80#endif
81 81
82#if !ENABLE_FEATURE_FANCY_HEAD 82#if !ENABLE_FEATURE_FANCY_HEAD