aboutsummaryrefslogtreecommitdiff
path: root/findutils/xargs.c
diff options
context:
space:
mode:
Diffstat (limited to 'findutils/xargs.c')
-rw-r--r--findutils/xargs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/findutils/xargs.c b/findutils/xargs.c
index f0abf1a23..83af75521 100644
--- a/findutils/xargs.c
+++ b/findutils/xargs.c
@@ -846,11 +846,11 @@ int xargs_main(int argc UNUSED_PARAM, char **argv)
846 * arguments, but not if the command is a NOFORK applet. If the rules 846 * arguments, but not if the command is a NOFORK applet. If the rules
847 * to detect this situation change xargs_exec() above will also need 847 * to detect this situation change xargs_exec() above will also need
848 * to be updated. */ 848 * to be updated. */
849# if ENABLE_FEATURE_XARGS_SUPPORT_PARALLEL 849# if ENABLE_FEATURE_PREFER_APPLETS && (NUM_APPLETS > 1)
850# if ENABLE_FEATURE_XARGS_SUPPORT_PARALLEL
850 if (G.max_procs == 1) 851 if (G.max_procs == 1)
851# endif 852# endif
852 { 853 {
853# if ENABLE_FEATURE_PREFER_APPLETS && (NUM_APPLETS > 1)
854 int applet = find_applet_by_name(argv[0]); 854 int applet = find_applet_by_name(argv[0]);
855 if (applet >= 0 && APPLET_IS_NOFORK(applet)) { 855 if (applet >= 0 && APPLET_IS_NOFORK(applet)) {
856 quote = FALSE; 856 quote = FALSE;