mirror of
https://github.com/sheumann/hush.git
synced 2024-12-21 23:29:34 +00:00
ash,hush: make bare "." set exitcode to 2
function old new delta dotcmd 300 305 +5 builtin_source 176 171 -5 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
a1db8b8415
commit
e66cf821cf
11
shell/ash.c
11
shell/ash.c
@ -12031,17 +12031,22 @@ find_dot_file(char *name)
|
||||
static int FAST_FUNC
|
||||
dotcmd(int argc, char **argv)
|
||||
{
|
||||
char *fullname;
|
||||
struct strlist *sp;
|
||||
volatile struct shparam saveparam;
|
||||
|
||||
for (sp = cmdenviron; sp; sp = sp->next)
|
||||
setvareq(ckstrdup(sp->text), VSTRFIXED | VTEXTFIXED);
|
||||
|
||||
if (!argv[1]) {
|
||||
/* bash says: "bash: .: filename argument required" */
|
||||
return 2; /* bash compat */
|
||||
}
|
||||
|
||||
/* "false; . empty_file; echo $?" should print 0, not 1: */
|
||||
exitstatus = 0;
|
||||
|
||||
if (argv[1]) { /* That's what SVR2 does */
|
||||
char *fullname = find_dot_file(argv[1]);
|
||||
fullname = find_dot_file(argv[1]);
|
||||
|
||||
argv += 2;
|
||||
argc -= 2;
|
||||
@ -12061,7 +12066,7 @@ dotcmd(int argc, char **argv)
|
||||
freeparam(&shellparam);
|
||||
shellparam = saveparam;
|
||||
};
|
||||
}
|
||||
|
||||
return exitstatus;
|
||||
}
|
||||
|
||||
|
21
shell/hush.c
21
shell/hush.c
@ -7870,21 +7870,26 @@ static int FAST_FUNC builtin_shift(char **argv)
|
||||
|
||||
static int FAST_FUNC builtin_source(char **argv)
|
||||
{
|
||||
char *arg_path;
|
||||
char *arg_path, *filename;
|
||||
FILE *input;
|
||||
save_arg_t sv;
|
||||
#if ENABLE_HUSH_FUNCTIONS
|
||||
smallint sv_flg;
|
||||
#endif
|
||||
|
||||
if (*++argv == NULL)
|
||||
return EXIT_FAILURE;
|
||||
|
||||
if (strchr(*argv, '/') == NULL && (arg_path = find_in_path(*argv)) != NULL) {
|
||||
input = fopen_for_read(arg_path);
|
||||
arg_path = NULL;
|
||||
filename = *++argv;
|
||||
if (!filename) {
|
||||
/* bash says: "bash: .: filename argument required" */
|
||||
return 2; /* bash compat */
|
||||
}
|
||||
if (!strchr(filename, '/')) {
|
||||
arg_path = find_in_path(filename);
|
||||
if (arg_path)
|
||||
filename = arg_path;
|
||||
}
|
||||
input = fopen_or_warn(filename, "r");
|
||||
free(arg_path);
|
||||
} else
|
||||
input = fopen_or_warn(*argv, "r");
|
||||
if (!input) {
|
||||
/* bb_perror_msg("%s", *argv); - done by fopen_or_warn */
|
||||
return EXIT_FAILURE;
|
||||
|
Loading…
Reference in New Issue
Block a user