From: Eric Andersen Date: Fri, 27 Apr 2001 07:49:41 +0000 (-0000) Subject: Use BUFSIZ for the_command to match size used in cmdedit X-Git-Tag: 0_52~277 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=088875fec497e7f41f2257b4ac8c05560b391ff9;p=oweals%2Fbusybox.git Use BUFSIZ for the_command to match size used in cmdedit --- diff --git a/hush.c b/hush.c index cec2549be..9a43a03dc 100644 --- a/hush.c +++ b/hush.c @@ -780,7 +780,7 @@ static inline void setup_prompt_string(int promptmode, char **prompt_str) static void get_user_input(struct in_str *i) { char *prompt_str; - static char the_command[MAX_LINE]; + static char the_command[BUFSIZ]; setup_prompt_string(i->promptmode, &prompt_str); #ifdef BB_FEATURE_COMMAND_EDITING diff --git a/shell/hush.c b/shell/hush.c index cec2549be..9a43a03dc 100644 --- a/shell/hush.c +++ b/shell/hush.c @@ -780,7 +780,7 @@ static inline void setup_prompt_string(int promptmode, char **prompt_str) static void get_user_input(struct in_str *i) { char *prompt_str; - static char the_command[MAX_LINE]; + static char the_command[BUFSIZ]; setup_prompt_string(i->promptmode, &prompt_str); #ifdef BB_FEATURE_COMMAND_EDITING