diff options
author | Ron Yorston <rmy@pobox.com> | 2020-04-07 10:41:34 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2020-04-30 16:37:44 +0200 |
commit | d1b75e1842b3e4f61daae2fb8a64d784a553f15c (patch) | |
tree | a8b5bb5175332f81cd3d9460acfabad4ad3fb9be /shell/hush_test/hush-misc/builtin1.tests | |
parent | 42a8984abc5eed709addac263aab43d64d47257d (diff) | |
download | busybox-d1b75e1842b3e4f61daae2fb8a64d784a553f15c.tar.gz |
httpd: permit non-default home directory with NOMMU enabled
When BusyBox is compiled with NOMMU enabled running httpd with
the '-h' option fails even if the specified directory exists:
$ ls -d www
www
$ busybox httpd -fvvvp 8080 -h www
...
... try to access http://localhost:8080/www
...
httpd: can't change directory to 'www': No such file or directory
The parent process executes xchdir("www"). When a connection is accepted
it's handled by re-executing httpd in inetd mode. The child process
inherits the current directory "www" and tries to change directory again
to "www", which fails.
Omit the call to xchdir() when httpd is re-executed.
Signed-off-by: Ron Yorston <rmy@pobox.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/hush_test/hush-misc/builtin1.tests')
0 files changed, 0 insertions, 0 deletions