mirror of
https://github.com/curl/curl.git
synced 2024-11-27 05:50:21 +08:00
Fix progressmode Configurable struct member data type. Changed to
'int' which fits better with existing CURL_PROGRESS_* definitions.
This commit is contained in:
parent
381a4d6efe
commit
3205ac35b0
@ -546,7 +546,7 @@ struct Configurable {
|
||||
trace tracetype;
|
||||
bool tracetime; /* include timestamp? */
|
||||
long httpversion;
|
||||
bool progressmode;
|
||||
int progressmode;
|
||||
bool nobuffer;
|
||||
bool readbusy; /* set when reading input returns EAGAIN */
|
||||
bool globoff;
|
||||
@ -2300,7 +2300,10 @@ static ParameterError getparameter(char *flag, /* f or -long-flag */
|
||||
}
|
||||
break;
|
||||
case '#': /* --progress-bar */
|
||||
config->progressmode = (bool)(toggle?CURL_PROGRESS_BAR:0);
|
||||
if(toggle)
|
||||
config->progressmode = CURL_PROGRESS_BAR;
|
||||
else
|
||||
config->progressmode = CURL_PROGRESS_STATS;
|
||||
break;
|
||||
case '0':
|
||||
/* HTTP version 1.0 */
|
||||
|
Loading…
Reference in New Issue
Block a user