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 | |
parent | 34d4d89b2d3337ea1486d98ea979c1594a6a5efe (diff) |
ftpd: s/CONFIG_BUSYBOX_EXEC_PATH/bb_busybox_exec_path/
-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) /* + 1: we must use relative path here if in chroot. * For example, execv("/proc/self/exe") will fail, since * it looks for "/proc/self/exe" _relative to chroot!_ */ - execv(CONFIG_BUSYBOX_EXEC_PATH + 1, (char**) argv); + execv(bb_busybox_exec_path + 1, (char**) argv); _exit(127); #else memset(&G, 0, sizeof(G)); |