Skip to content
Snippets Groups Projects
Commit a9f6fc35 authored by Hallvard Furuseth's avatar Hallvard Furuseth
Browse files

Grow buffer[] declaration to make space for " $ " separators

parent f90ed5ae
No related branches found
No related tags found
No related merge requests found
......@@ -375,7 +375,7 @@ get_value( char *id, char *prompt )
int count; /* line # of new value -- if multiline */
int multiline = 0; /* 1 if this value is multiline */
static char line[LINE_SIZE]; /* raw line from user */
static char buffer[MAX_DESC_LINES * LINE_SIZE]; /* holds ALL of the
static char buffer[MAX_DESC_LINES * (LINE_SIZE+2)]; /* holds ALL of the
lines we get */
#ifdef DEBUG
if (debug & D_TRACE)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment