mirror of
https://github.com/curl/curl.git
synced 2026-08-01 20:50:27 +03:00
CURLOPT_MUTE and data->bits.mute are history, removed, gone!
This commit is contained in:
parent
94af496ac4
commit
fe82ddda46
3 changed files with 3 additions and 7 deletions
|
|
@ -232,7 +232,6 @@ CURLcode Curl_open(CURL **curl, char *url)
|
|||
data->httpreq = HTTPREQ_GET; /* Default HTTP request */
|
||||
|
||||
/* make libcurl quiet by default: */
|
||||
data->bits.mute = TRUE; /* CURLOPT_MUTE changes this */
|
||||
data->bits.hide_progress = TRUE; /* CURLOPT_NOPROGRESS changes these */
|
||||
data->progress.flags |= PGRS_HIDE;
|
||||
|
||||
|
|
@ -439,12 +438,15 @@ CURLcode Curl_setopt(CURL *curl, CURLoption option, ...)
|
|||
if(data->bits.http_put)
|
||||
data->httpreq = HTTPREQ_PUT;
|
||||
break;
|
||||
#if 0
|
||||
/* obsolete stuff, kept here a while for informational purposes */
|
||||
case CURLOPT_MUTE:
|
||||
/*
|
||||
* Stay absolutely quiet.
|
||||
*/
|
||||
data->bits.mute = va_arg(param, long)?TRUE:FALSE;
|
||||
break;
|
||||
#endif
|
||||
case CURLOPT_TIMECONDITION:
|
||||
/*
|
||||
* Set HTTP time condition. This must be one of the defines in the
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue