diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2009-04-04 20:34:22 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2009-04-04 20:34:22 +0000 |
commit | 42e78b978fce494f3f9c1cd629fbf06f9b8ea11c (patch) | |
tree | 698260ac3a5ffb671060cfa0779ac0e29c14b2b7 /networking/ftpd.c | |
parent | 34d4d89b2d3337ea1486d98ea979c1594a6a5efe (diff) | |
download | busybox-w32-42e78b978fce494f3f9c1cd629fbf06f9b8ea11c.tar.gz busybox-w32-42e78b978fce494f3f9c1cd629fbf06f9b8ea11c.tar.bz2 busybox-w32-42e78b978fce494f3f9c1cd629fbf06f9b8ea11c.zip |
ftpd: s/CONFIG_BUSYBOX_EXEC_PATH/bb_busybox_exec_path/
Diffstat (limited to 'networking/ftpd.c')
-rw-r--r-- | networking/ftpd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/ftpd.c b/networking/ftpd.c index 39a4d1869..ac6896117 100644 --- a/networking/ftpd.c +++ b/networking/ftpd.c | |||
@@ -659,7 +659,7 @@ popen_ls(const char *opt) | |||
659 | /* + 1: we must use relative path here if in chroot. | 659 | /* + 1: we must use relative path here if in chroot. |
660 | * For example, execv("/proc/self/exe") will fail, since | 660 | * For example, execv("/proc/self/exe") will fail, since |
661 | * it looks for "/proc/self/exe" _relative to chroot!_ */ | 661 | * it looks for "/proc/self/exe" _relative to chroot!_ */ |
662 | execv(CONFIG_BUSYBOX_EXEC_PATH + 1, (char**) argv); | 662 | execv(bb_busybox_exec_path + 1, (char**) argv); |
663 | _exit(127); | 663 | _exit(127); |
664 | #else | 664 | #else |
665 | memset(&G, 0, sizeof(G)); | 665 | memset(&G, 0, sizeof(G)); |