diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-04-11 07:26:56 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-04-11 07:26:56 +0000 |
commit | e2122e97d43eff66f4f97a8027869f7336eed382 (patch) | |
tree | 2a80443d013ced4fca49ae44a64455ce782867c7 | |
parent | 3957840be20275e562023b19a3626dccda0982ce (diff) | |
download | busybox-w32-e2122e97d43eff66f4f97a8027869f7336eed382.tar.gz busybox-w32-e2122e97d43eff66f4f97a8027869f7336eed382.tar.bz2 busybox-w32-e2122e97d43eff66f4f97a8027869f7336eed382.zip |
fix misplaced #if
git-svn-id: svn://busybox.net/trunk/busybox@18397 69ca8d6d-28ef-0310-b511-8ec308f3f277
-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 |