diff options
author | Daniel Stenberg <daniel@haxx.se> | 2000-10-02 06:36:34 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2000-10-02 06:36:34 +0000 |
commit | c23e387928284f8dac31024e6e444859d2cde3a1 (patch) | |
tree | 879ddac2baaa3e269fc43292364ed6a8e8d92b37 /src | |
parent | ef77d484f07ab4730ba4d9b5f9f564c89942ab52 (diff) | |
download | curl-c23e387928284f8dac31024e6e444859d2cde3a1.tar.gz |
Uses the new "client-side" writeout function
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c index ddf12f110..7c16e8ae8 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); |