From: Daniel Stenberg Date: Mon, 2 Oct 2000 06:36:34 +0000 (+0000) Subject: Uses the new "client-side" writeout function X-Git-Tag: curl-7_4_1~44 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c23e387928284f8dac31024e6e444859d2cde3a1;p=thirdparty%2Fcurl.git Uses the new "client-side" writeout function --- diff --git a/src/main.c b/src/main.c index ddf12f110b..7c16e8ae8a 100644 --- a/src/main.c +++ b/src/main.c @@ -1530,6 +1530,10 @@ int main(int argc, char *argv[]) res = curl_easy_perform(curl); + if(config.writeout) { + ourWriteOut(curl, config.writeout); + } + /* always cleanup */ curl_easy_cleanup(curl);