diff options
author | Denis Vlasenko | 2006-12-22 13:56:36 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-12-22 13:56:36 +0000 |
commit | 0849207ce049a4ff0287ff5c03d24611e5340e2a (patch) | |
tree | ebc86b4456711b1aa8905894432e544df28e2d63 /coreutils/fold.c | |
parent | c5cb38f4d9fa90fdd01ea258390d0059138616b5 (diff) | |
download | busybox-0849207ce049a4ff0287ff5c03d24611e5340e2a.zip busybox-0849207ce049a4ff0287ff5c03d24611e5340e2a.tar.gz |
convert "negaite" config option into reversed (INCLUDE_SUSv2)
Diffstat (limited to 'coreutils/fold.c')
-rw-r--r-- | coreutils/fold.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/fold.c b/coreutils/fold.c index 9ca693d..fd72981 100644 --- a/coreutils/fold.c +++ b/coreutils/fold.c @@ -45,7 +45,7 @@ int fold_main(int argc, char **argv) int i; int errs = 0; - if(!ENABLE_DEBUG_YANK_SUSv2) { + if (ENABLE_INCLUDE_SUSv2) { /* Turn any numeric options into -w options. */ for (i = 1; i < argc; i++) { char const *a = argv[i]; |