made the test-program in the bottom compile/build, remember to link with

strequal.o as well!
This commit is contained in:
Daniel Stenberg 2001-06-05 11:27:40 +00:00
parent 268867311e
commit b1cd033c27
1 changed files with 8 additions and 3 deletions

View File

@ -634,11 +634,16 @@ int main(int argc, char **argv)
form=Curl_getFormData(httppost, &size);
FormInit(&formread, form);
Curl_FormInit(&formread, form);
while(nread = FormReader(buffer, 1, sizeof(buffer), (FILE *)&formread)) {
do {
nread = Curl_FormReader(buffer, 1, sizeof(buffer),
(FILE *)&formread);
if(-1 == nread)
break;
fwrite(buffer, nread, 1, stderr);
}
} while(1);
fprintf(stderr, "size: %d\n", size);