aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/ash.c')
-rw-r--r--shell/ash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 0704353f5..3a9998fc0 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -4804,9 +4804,9 @@ exptilde(char *startp, char *p, int flag)
4804 while ((c = *++p) != '\0') { 4804 while ((c = *++p) != '\0') {
4805 switch(c) { 4805 switch(c) {
4806 case CTLESC: 4806 case CTLESC:
4807 return (startp); 4807 return startp;
4808 case CTLQUOTEMARK: 4808 case CTLQUOTEMARK:
4809 return (startp); 4809 return startp;
4810 case ':': 4810 case ':':
4811 if (flag & EXP_VARTILDE) 4811 if (flag & EXP_VARTILDE)
4812 goto done; 4812 goto done;