From: Wayne Davison Date: Tue, 3 May 2005 17:01:59 +0000 (+0000) Subject: There was no reason to have MAX_BASIS_DIRS factored into the X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/74ba98a51be607516c80c2289e55ed66cc9fa52f?hp=c296031d9fd9e9826d3ef3709df03050fc6b4a44 There was no reason to have MAX_BASIS_DIRS factored into the length of the argstr[] array. --- 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;