Commit 74ba98a5 authored by Wayne Davison's avatar Wayne Davison

There was no reason to have MAX_BASIS_DIRS factored into the

length of the argstr[] array.
parent c296031d
...@@ -1236,7 +1236,7 @@ int parse_arguments(int *argc, const char ***argv, int frommain) ...@@ -1236,7 +1236,7 @@ int parse_arguments(int *argc, const char ***argv, int frommain)
**/ **/
void server_options(char **args,int *argc) void server_options(char **args,int *argc)
{ {
static char argstr[50+MAX_BASIS_DIRS*2]; static char argstr[64];
int ac = *argc; int ac = *argc;
char *arg; char *arg;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment