aboutsummaryrefslogtreecommitdiff
path: root/lib/url.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-03-13 13:10:52 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-03-13 13:10:52 +0000
commite1bae4fc7e3c565ea4ccd8a61b68f2f68c9a931d (patch)
tree80efcfa8caaba54c09a21524609f700d26ceda20 /lib/url.c
parentbc9705f7583c7ef6ed4fd0566ba45846606dc025 (diff)
Setting CURLOPT_PASSWDFUNCTION to NULL now restores the internal function.
Diffstat (limited to 'lib/url.c')
-rw-r--r--lib/url.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/url.c b/lib/url.c
index e42ce9aed..cd1854328 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -752,7 +752,11 @@ CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option, ...)
* Progress callback function
*/
data->set.fprogress = va_arg(param, curl_progress_callback);
- data->progress.callback = TRUE; /* no longer internal */
+ if(data->set.fprogress)
+ data->progress.callback = TRUE; /* no longer internal */
+ else
+ data->progress.callback = FALSE; /* NULL enforces internal */
+
break;
case CURLOPT_PROGRESSDATA:
/*