aboutsummaryrefslogtreecommitdiff
path: root/src/tool_cfgable.h
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2014-02-27 20:21:23 +0000
committerSteve Holme <steve_holme@hotmail.com>2014-02-27 20:31:27 +0000
commit5577540ad5d5dc4737c5d4714d15c6b5fcfb8a74 (patch)
tree3e5aea1b5f6eba9a8f234fc905ef1b10155bac86 /src/tool_cfgable.h
parent17df2d8f8ee7864996c8a6a45886ccd6e34d065d (diff)
tool: Moved --silient to the global config
Other global options such as --libcurl, --trace and --verbose to follow.
Diffstat (limited to 'src/tool_cfgable.h')
-rw-r--r--src/tool_cfgable.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tool_cfgable.h b/src/tool_cfgable.h
index 77c603752..381cd2c8a 100644
--- a/src/tool_cfgable.h
+++ b/src/tool_cfgable.h
@@ -87,7 +87,6 @@ struct OperationConfig {
bool sasl_ir; /* Enable/disable SASL initial response */
bool proxytunnel;
bool ftp_append; /* APPE on ftp */
- bool mute; /* don't show messages, --silent given */
bool use_ascii; /* select ascii or text transfer */
bool autoreferer; /* automatically set referer */
bool failonerror; /* fail on (HTTP) errors */
@@ -225,6 +224,7 @@ struct GlobalConfig {
int showerror; /* -1 == unset, default => show errors
0 => -s is used to NOT show errors
1 => -S has been used to show errors */
+ bool mute; /* don't show messages, --silent given */
struct OperationConfig *first;
struct OperationConfig *current;