From: Daniel Stenberg Date: Fri, 22 Nov 2002 13:48:24 +0000 (+0000) Subject: this fix seems to make the '305 306' test case combination to run ok finally! X-Git-Tag: curl-7_10_3~144 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=12cfb4f7ee29fd3646cc57e3fd35c4450e033dba;p=curl this fix seems to make the '305 306' test case combination to run ok finally! --- diff --git a/tests/server/sws.c b/tests/server/sws.c index 11ad8a455..ee152ac9d 100644 --- a/tests/server/sws.c +++ b/tests/server/sws.c @@ -268,7 +268,7 @@ static int send_doc(int sock, int doc, int part_no) char *ptr; FILE *stream; char *cmd=NULL; - int cmdsize; + int cmdsize=0; char filename[256]; char partbuf[80]="data"; @@ -285,10 +285,8 @@ static int send_doc(int sock, int doc, int part_no) count = strlen(buffer); } else { - if(0 != part_no) { + if(0 != part_no) sprintf(partbuf, "data%d", part_no); - } - sprintf(filename, TEST_DATA_PATH, doc);