diff options
author | Mikael Magnusson <mikachu@gmail.com> | 2015-02-08 06:44:02 +0100 |
---|---|---|
committer | Mikael Magnusson <mikachu@gmail.com> | 2015-02-09 05:13:34 +0100 |
commit | dfbb5e4853d8cc55fb7c3ffe53887130cbc2dc3f (patch) | |
tree | 217fc7f3669467aad025e37f78ea054be1e2aa67 /Src/utils.c | |
parent | 7d15b9a9cb22972b5864523de5689aa05a8d61da (diff) | |
download | zsh-dfbb5e4853d8cc55fb7c3ffe53887130cbc2dc3f.tar.gz zsh-dfbb5e4853d8cc55fb7c3ffe53887130cbc2dc3f.tar.xz zsh-dfbb5e4853d8cc55fb7c3ffe53887130cbc2dc3f.zip |
34466: Fix double unmeta in rm verification
Diffstat (limited to 'Src/utils.c')
-rw-r--r-- | Src/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/utils.c b/Src/utils.c index 47d99442d..702829c0c 100644 --- a/Src/utils.c +++ b/Src/utils.c @@ -2460,7 +2460,7 @@ checkrmall(char *s) return 1; fprintf(shout, "zsh: sure you want to delete all the files in "); if (*s != '/') { - nicezputs(pwd[1] ? unmeta(pwd) : "", shout); + nicezputs(pwd[1] ? pwd : "", shout); fputc('/', shout); } nicezputs(s, shout); |