From defcd5e75eec72aa31e9bdbd9ac854832318f82f Mon Sep 17 00:00:00 2001 From: Matt Kraai Date: Fri, 5 Jan 2001 02:53:11 +0000 Subject: Fix a segfault by only constructing the prompt when we need to. If we don't do this we will segfault processing /etc/.profile since cwd isn't yet set. --- sh.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sh.c') diff --git a/sh.c b/sh.c index dd1d3aa5c..3d54b439e 100644 --- a/sh.c +++ b/sh.c @@ -774,9 +774,9 @@ static int get_command(FILE * source, char *command) return 1; } - prompt_str = setup_prompt_string(shell_context); - if (source == stdin) { + prompt_str = setup_prompt_string(shell_context); + #ifdef BB_FEATURE_SH_COMMAND_EDITING /* ** enable command line editing only while a command line -- cgit v1.2.3