mirror of
https://github.com/curl/curl.git
synced 2025-03-01 15:15:34 +08:00
tool_cfgable: make 'synthetic_error' a plain bool
The specific reason was not used. Closes #9179
This commit is contained in:
parent
3f533a7977
commit
2b0ddb657c
@ -234,7 +234,7 @@ size_t tool_write_cb(char *buffer, size_t sz, size_t nmemb, void *userdata)
|
||||
warnf(config->global, "Binary output can mess up your terminal. "
|
||||
"Use \"--output -\" to tell curl to output it to your terminal "
|
||||
"anyway, or consider \"--output <FILE>\" to save to a file.\n");
|
||||
config->synthetic_error = ERR_BINARY_TERMINAL;
|
||||
config->synthetic_error = TRUE;
|
||||
return failure;
|
||||
}
|
||||
}
|
||||
|
@ -28,12 +28,6 @@
|
||||
#include "tool_urlglob.h"
|
||||
#include "tool_formparse.h"
|
||||
|
||||
typedef enum {
|
||||
ERR_NONE,
|
||||
ERR_BINARY_TERMINAL = 1, /* binary to terminal detected */
|
||||
ERR_LAST
|
||||
} curl_error;
|
||||
|
||||
struct GlobalConfig;
|
||||
|
||||
struct State {
|
||||
@ -282,8 +276,7 @@ struct OperationConfig {
|
||||
double expect100timeout;
|
||||
bool suppress_connect_headers; /* suppress proxy CONNECT response headers
|
||||
from user callbacks */
|
||||
curl_error synthetic_error; /* if non-zero, it overrides any libcurl
|
||||
error */
|
||||
bool synthetic_error; /* if TRUE, this is tool-internal error */
|
||||
bool ssh_compression; /* enable/disable SSH compression */
|
||||
long happy_eyeballs_timeout_ms; /* happy eyeballs timeout in milliseconds.
|
||||
0 is valid. default: CURL_HET_DEFAULT. */
|
||||
|
Loading…
Reference in New Issue
Block a user