diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-11 07:26:56 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-11 07:26:56 +0000 |
commit | d571c08c25707174979e7617a898c305c66aa78f (patch) | |
tree | 2a80443d013ced4fca49ae44a64455ce782867c7 /libbb/vfork_daemon_rexec.c | |
parent | 473dae080a8a0089d5d619a56d8943d131aa451e (diff) | |
download | busybox-w32-d571c08c25707174979e7617a898c305c66aa78f.tar.gz busybox-w32-d571c08c25707174979e7617a898c305c66aa78f.tar.bz2 busybox-w32-d571c08c25707174979e7617a898c305c66aa78f.zip |
fix misplaced #if
Diffstat (limited to 'libbb/vfork_daemon_rexec.c')
-rw-r--r-- | libbb/vfork_daemon_rexec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/vfork_daemon_rexec.c b/libbb/vfork_daemon_rexec.c index 281ead4dc..ce5a627ed 100644 --- a/libbb/vfork_daemon_rexec.c +++ b/libbb/vfork_daemon_rexec.c | |||
@@ -102,8 +102,8 @@ int wait_pid(int *wstat, int pid) | |||
102 | 102 | ||
103 | int spawn_and_wait(char **argv) | 103 | int spawn_and_wait(char **argv) |
104 | { | 104 | { |
105 | #if ENABLE_FEATURE_PREFER_APPLETS | ||
106 | int rc; | 105 | int rc; |
106 | #if ENABLE_FEATURE_PREFER_APPLETS | ||
107 | const struct bb_applet *a = find_applet_by_name(argv[0]); | 107 | const struct bb_applet *a = find_applet_by_name(argv[0]); |
108 | 108 | ||
109 | if (a && (a->nofork | 109 | if (a && (a->nofork |