diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-12-22 18:02:02 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-12-22 18:02:02 +0000 |
commit | 2d5b64273fb10938f963ea845bf558b55c3884fa (patch) | |
tree | 7a470ffead9aec7702b319d30fb86dd44c988cd6 /sh.c | |
parent | a9819b290848e0a760f3805d5937fa050235d707 (diff) | |
download | busybox-w32-2d5b64273fb10938f963ea845bf558b55c3884fa.tar.gz busybox-w32-2d5b64273fb10938f963ea845bf558b55c3884fa.tar.bz2 busybox-w32-2d5b64273fb10938f963ea845bf558b55c3884fa.zip |
Cleanup from Gennady Feldman <gfeldman@mail.com>
Diffstat (limited to 'sh.c')
-rw-r--r-- | sh.c | 10 |
1 files changed, 2 insertions, 8 deletions
@@ -807,14 +807,8 @@ static int get_command(FILE * source, char *command) | |||
807 | signal(SIGWINCH, SIG_DFL); | 807 | signal(SIGWINCH, SIG_DFL); |
808 | return 0; | 808 | return 0; |
809 | #else | 809 | #else |
810 | i=strlen(cwd); | 810 | fprintf(stdout, "[%s@%s %s]%s",user, buf, |
811 | i--; | 811 | get_last_path_component(cwd), prompt); |
812 | if (i>1){ | ||
813 | while ((i>0) && (*(cwd+i)!='/') ) i--; | ||
814 | if (*(cwd+i)=='/') i++; | ||
815 | } | ||
816 | |||
817 | fprintf(stdout, "[%s@%s %s]%s",user, buf, (cwd+i), prompt); | ||
818 | fflush(stdout); | 812 | fflush(stdout); |
819 | #endif | 813 | #endif |
820 | } | 814 | } |