diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-02-07 20:27:03 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-02-07 20:27:03 +0000 |
commit | deed0b82815152ae649e2afb9b2d7f387ea1f983 (patch) | |
tree | 4da9a21c5f9bbbf3e8cadef77f67285cabd304c4 /libbb | |
parent | d6153c8a03160ac998a9ea686b94dcc6dbbdf646 (diff) | |
download | busybox-w32-deed0b82815152ae649e2afb9b2d7f387ea1f983.tar.gz busybox-w32-deed0b82815152ae649e2afb9b2d7f387ea1f983.tar.bz2 busybox-w32-deed0b82815152ae649e2afb9b2d7f387ea1f983.zip |
fix #ifdef ENABLE_xxx -> #if
git-svn-id: svn://busybox.net/trunk/busybox@17807 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/execable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/execable.c b/libbb/execable.c index 601c7539e..ee10c6123 100644 --- a/libbb/execable.c +++ b/libbb/execable.c | |||
@@ -60,7 +60,7 @@ int exists_execable(const char *filename) | |||
60 | return 0; | 60 | return 0; |
61 | } | 61 | } |
62 | 62 | ||
63 | #ifdef ENABLE_FEATURE_EXEC_PREFER_APPLETS | 63 | #if ENABLE_FEATURE_EXEC_PREFER_APPLETS |
64 | /* just like the real execvp, but try to launch an applet named 'file' first | 64 | /* just like the real execvp, but try to launch an applet named 'file' first |
65 | */ | 65 | */ |
66 | int bb_execvp(const char *file, char *const argv[]) | 66 | int bb_execvp(const char *file, char *const argv[]) |