diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-05-06 18:30:17 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-05-06 18:30:17 +0000 |
commit | f7ca561b06d34b230040bdaa3baa9c37596e7d84 (patch) | |
tree | 79dbac550b75ee61fb2ed914e72f7f26362f0609 /lib | |
parent | cacd756efd3ea69c344f07fe9b80d254a3d3ea7d (diff) |
the code for case CURLOPT_DEBUGDATA code broke the CURLOPT_STDERR one!
Diffstat (limited to 'lib')
-rw-r--r-- | lib/url.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -819,6 +819,7 @@ CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option, ...) * defaults to CURLOPT_STDERR for normal operations. */ data->set.debugdata = va_arg(param, void *); + break; case CURLOPT_STDERR: /* * Set to a FILE * that should receive all error writes. This |