projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f8ee849
)
xargs: fix a thinko in last commit
author
Denys Vlasenko
<vda.linux@googlemail.com>
Wed, 30 Aug 2017 11:44:27 +0000
(13:44 +0200)
committer
Denys Vlasenko
<vda.linux@googlemail.com>
Wed, 30 Aug 2017 11:44:27 +0000
(13:44 +0200)
IF_FEATURE_XARGS_SUPPORT_PARALLEL(char *opt_a = NULL;)
is replaced with
IF_FEATURE_XARGS_SUPPORT_ARGS_FILE
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
findutils/xargs.c
patch
|
blob
|
history
diff --git
a/findutils/xargs.c
b/findutils/xargs.c
index acee0319ad30078d9950529980f07e412c02e077..117a39b629ac9efb11f0574e2abfa5f1e5608ecf 100644
(file)
--- a/
findutils/xargs.c
+++ b/
findutils/xargs.c
@@
-593,7
+593,7
@@
int xargs_main(int argc UNUSED_PARAM, char **argv)
#else
#define read_args process_stdin
#endif
- IF_FEATURE_XARGS_SUPPORT_
PARALLEL
(char *opt_a = NULL;)
+ IF_FEATURE_XARGS_SUPPORT_
ARGS_FILE
(char *opt_a = NULL;)
INIT_G();