diff options
author | Daniel Stenberg <daniel@haxx.se> | 2006-11-08 08:49:27 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2006-11-08 08:49:27 +0000 |
commit | a03c76b228fc85e457934335d46173b967721644 (patch) | |
tree | e8d3401401534d243c38155f1f1267405ff3d7e2 | |
parent | 35ad61429d85bfca6553cd6c59573fdcdb7a7781 (diff) |
ok stop using old and deprecated options
-rw-r--r-- | docs/examples/sepheaders.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/docs/examples/sepheaders.c b/docs/examples/sepheaders.c index 6e8735168..cf2f419d6 100644 --- a/docs/examples/sepheaders.c +++ b/docs/examples/sepheaders.c @@ -1,8 +1,8 @@ /***************************************************************************** - * _ _ ____ _ - * Project ___| | | | _ \| | - * / __| | | | |_) | | - * | (__| |_| | _ <| |___ + * _ _ ____ _ + * Project ___| | | | _ \| | + * / __| | | | |_) | | + * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * $Id$ @@ -41,9 +41,6 @@ int main(int argc, char **argv) /* no progress meter please */ curl_easy_setopt(curl_handle, CURLOPT_NOPROGRESS, 1); - /* shut up completely */ - curl_easy_setopt(curl_handle, CURLOPT_MUTE, 1); - /* send all data to this function */ curl_easy_setopt(curl_handle, CURLOPT_WRITEFUNCTION, write_data); |