From e6e8b144053f4eeda369e53cde01056daceddd03 Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Sat, 22 Feb 2014 20:58:43 +0000 Subject: tool_cfgable: Removed list_engine flag from config structure In preparation for separating the global config options from the per operation config options, reworked the list engines code to not use a member variable in the Configurable structure. --- src/tool_parsecfg.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/tool_parsecfg.c') diff --git a/src/tool_parsecfg.c b/src/tool_parsecfg.c index 71be83d71..44d7001f0 100644 --- a/src/tool_parsecfg.c +++ b/src/tool_parsecfg.c @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2013, Daniel Stenberg, , et al. + * Copyright (C) 1998 - 2014, Daniel Stenberg, , et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -230,7 +230,8 @@ int parseconfig(const char *filename, if(!strcmp(filename, "-")) { filename = (char *)""; } - if(PARAM_HELP_REQUESTED != res) { + if(res != PARAM_HELP_REQUESTED && + res != PARAM_ENGINES_REQUESTED) { const char *reason = param2text(res); warnf(config, "%s:%d: warning: '%s' %s\n", filename, lineno, option, reason); -- cgit v1.2.3