aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2018-01-27 19:05:59 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2018-01-27 19:05:59 +0100
commitf7e0feaf977ea5fef0f0819ba67a47dbef9b2e1a (patch)
tree9032aeeacc7af878046f560c920aedee67870843 /shell
parentbb373dbc3297748623dec26798a631a4530122ec (diff)
downloadbusybox-f7e0feaf977ea5fef0f0819ba67a47dbef9b2e1a.tar.gz
hush: fix dot builtin to not search current directory
function old new delta builtin_source 182 209 +27 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell')
-rw-r--r--shell/hush.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/shell/hush.c b/shell/hush.c
index cf3c731bc..2d1cc5ca6 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -10211,6 +10211,11 @@ static int FAST_FUNC builtin_source(char **argv)
arg_path = find_in_path(filename);
if (arg_path)
filename = arg_path;
+ else /* add "if (!HUSH_BASH_SOURCE_CURDIR)" if users want bash-compat */ {
+ errno = ENOENT;
+ bb_simple_perror_msg(filename);
+ return EXIT_FAILURE;
+ }
}
input = remember_FILE(fopen_or_warn(filename, "r"));
free(arg_path);