From 74ba98a51be607516c80c2289e55ed66cc9fa52f Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Tue, 3 May 2005 17:01:59 +0000 Subject: [PATCH] There was no reason to have MAX_BASIS_DIRS factored into the length of the argstr[] array. --- options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/options.c b/options.c index 52ac58f7..69fe4b39 100644 --- a/options.c +++ b/options.c @@ -1236,7 +1236,7 @@ int parse_arguments(int *argc, const char ***argv, int frommain) **/ void server_options(char **args,int *argc) { - static char argstr[50+MAX_BASIS_DIRS*2]; + static char argstr[64]; int ac = *argc; char *arg; -- 2.34.1