mirror of
https://github.com/sheumann/hush.git
synced 2024-12-22 14:30:31 +00:00
msh: fix my buglet
This commit is contained in:
parent
b477e18c1e
commit
d244c5eaf8
13
shell/msh.c
13
shell/msh.c
@ -3157,12 +3157,15 @@ static int dochdir(struct op *t)
|
||||
cp = t->words[1];
|
||||
if (cp == NULL) {
|
||||
cp = homedir->value;
|
||||
if (cp == NULL)
|
||||
er = ": no home directory";
|
||||
} else if (chdir(cp) < 0)
|
||||
if (cp != NULL)
|
||||
goto do_cd;
|
||||
er = ": no home directory";
|
||||
} else {
|
||||
do_cd:
|
||||
if (chdir(cp) >= 0)
|
||||
return 0;
|
||||
er = ": bad directory";
|
||||
else
|
||||
return 0;
|
||||
}
|
||||
prs(cp != NULL ? cp : "cd");
|
||||
err(er);
|
||||
return 1;
|
||||
|
Loading…
Reference in New Issue
Block a user