aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--networking/ftpd.c2
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));