aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-11-27 16:59:15 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-11-27 16:59:15 +0000
commit8aeacdeb7985d23b2d692fca7f2b77c16fa0a6ec (patch)
tree4817bcd854907cb2cd905780e54ea24faf1c80c5 /shell/ash.c
parentdb172fe425634b7d784ae1d5af6d88b96b4e747e (diff)
downloadbusybox-w32-8aeacdeb7985d23b2d692fca7f2b77c16fa0a6ec.tar.gz
busybox-w32-8aeacdeb7985d23b2d692fca7f2b77c16fa0a6ec.tar.bz2
busybox-w32-8aeacdeb7985d23b2d692fca7f2b77c16fa0a6ec.zip
fix remaining survivors of the return(a) cleanup
git-svn-id: svn://busybox.net/trunk/busybox@16692 69ca8d6d-28ef-0310-b511-8ec308f3f277
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;