ftpd: s/CONFIG_BUSYBOX_EXEC_PATH/bb_busybox_exec_path/

This commit is contained in:
Denis Vlasenko 2009-04-04 20:34:22 +00:00
parent 34d4d89b2d
commit 42e78b978f

View File

@ -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));