From b98c74b67eb63300d32a9ed32f93d94c79c6476b Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Sat, 22 Feb 2014 16:21:53 +0000 Subject: tool_operhlp: Consolidated engine output code into tool_help --- src/tool_help.c | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'src/tool_help.c') diff --git a/src/tool_help.c b/src/tool_help.c index 7c74927eb..99d276845 100644 --- a/src/tool_help.c +++ b/src/tool_help.c @@ -23,7 +23,6 @@ #include "tool_panykey.h" #include "tool_help.h" -#include "tool_operhlp.h" #include "memdebug.h" /* keep this as LAST include */ @@ -262,7 +261,18 @@ void tool_list_engines(CURL *curl) { struct curl_slist *engines = NULL; + /* Get the list of engines */ curl_easy_getinfo(curl, CURLINFO_SSL_ENGINES, &engines); - list_engines(engines); + + puts("Build-time engines:"); + if(engines) { + for(; engines; engines = engines->next) + printf(" %s\n", engines->data); + } + else { + puts(" "); + } + + /* Cleanup the list of engines */ curl_slist_free_all(engines); } -- cgit v1.2.3