1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

this fix seems to make the '305 306' test case combination to run ok finally!

This commit is contained in:
Daniel Stenberg 2002-11-22 13:48:24 +00:00
parent 9e1123debe
commit 12cfb4f7ee

View File

@ -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);