aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c
diff options
context:
space:
mode:
authorJohannes Schindelin <johannes.schindelin@gmx.de>2017-08-22 22:03:22 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2017-08-23 14:48:25 +0200
commit687aac056d08ef7c0eafb3d610d3dcdce35b635a (patch)
tree0de0980dfa860528f4490c5e2785fa00ed722ff6 /shell/ash.c
parent20a63b2c18e9e69b02090d49b4aec399f082fdaf (diff)
downloadbusybox-687aac056d08ef7c0eafb3d610d3dcdce35b635a.tar.gz
ash: when cd fails, say why
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/ash.c')
-rw-r--r--shell/ash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c
index a67a45376..60bcd1b0a 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -2748,7 +2748,7 @@ cdcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
goto docd;
err:
- ash_msg_and_raise_error("can't cd to %s", dest);
+ ash_msg_and_raise_perror("can't cd to %s", dest);
/* NOTREACHED */
out:
if (flags & CD_PRINT)