aboutsummaryrefslogtreecommitdiff
path: root/hush.c
diff options
context:
space:
mode:
authorbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-06-26 02:06:08 +0000
committerbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-06-26 02:06:08 +0000
commit098f9284606716ba803204c23341bab293e0ff92 (patch)
treeae5bb34caa3b88968102e93193a01e4d90109b92 /hush.c
parenta63f350d93c941c89e2c929893dfa25e423e3b94 (diff)
downloadbusybox-w32-098f9284606716ba803204c23341bab293e0ff92.tar.gz
busybox-w32-098f9284606716ba803204c23341bab293e0ff92.tar.bz2
busybox-w32-098f9284606716ba803204c23341bab293e0ff92.zip
Vladimir's last_patch_15
git-svn-id: svn://busybox.net/trunk/busybox@2905 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'hush.c')
-rw-r--r--hush.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hush.c b/hush.c
index b0637f806..859353dcf 100644
--- a/hush.c
+++ b/hush.c
@@ -861,7 +861,7 @@ static inline void setup_prompt_string(int promptmode, char **prompt_str)
861 *prompt_str = PS2; 861 *prompt_str = PS2;
862 } 862 }
863#else 863#else
864 *prompt_str = (promptmode==0)? PS1 : PS2; 864 *prompt_str = (promptmode==1)? PS1 : PS2;
865#endif 865#endif
866 debug_printf("result %s\n",*prompt_str); 866 debug_printf("result %s\n",*prompt_str);
867} 867}