diff options
author | Steve Holme <steve_holme@hotmail.com> | 2014-02-27 20:21:23 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2014-02-27 20:31:27 +0000 |
commit | 5577540ad5d5dc4737c5d4714d15c6b5fcfb8a74 (patch) | |
tree | 3e5aea1b5f6eba9a8f234fc905ef1b10155bac86 /src/tool_msgs.c | |
parent | 17df2d8f8ee7864996c8a6a45886ccd6e34d065d (diff) | |
download | curl-5577540ad5d5dc4737c5d4714d15c6b5fcfb8a74.tar.gz |
tool: Moved --silient to the global config
Other global options such as --libcurl, --trace and --verbose to
follow.
Diffstat (limited to 'src/tool_msgs.c')
-rw-r--r-- | src/tool_msgs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tool_msgs.c b/src/tool_msgs.c index 54754aef9..c92fbace2 100644 --- a/src/tool_msgs.c +++ b/src/tool_msgs.c @@ -40,7 +40,7 @@ void warnf(struct OperationConfig *config, const char *fmt, ...) { - if(!config->mute) { + if(!config->global->mute) { va_list ap; int len; char *ptr; |