summaryrefslogtreecommitdiffstats
path: root/inc/abrt_xmlrpc.h
diff options
context:
space:
mode:
Diffstat (limited to 'inc/abrt_xmlrpc.h')
-rw-r--r--inc/abrt_xmlrpc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/abrt_xmlrpc.h b/inc/abrt_xmlrpc.h
index ce770384..ad1a87d3 100644
--- a/inc/abrt_xmlrpc.h
+++ b/inc/abrt_xmlrpc.h
@@ -33,11 +33,11 @@ struct abrt_xmlrpc_conn {
xmlrpc_client* m_pClient;
xmlrpc_server_info* m_pServer_info;
- abrt_xmlrpc_conn(const char* url, bool no_ssl_verify) { new_xmlrpc_client(url, no_ssl_verify); }
+ abrt_xmlrpc_conn(const char* url, bool ssl_verify) { new_xmlrpc_client(url, ssl_verify); }
/* this never throws exceptions - calls C functions only */
~abrt_xmlrpc_conn() { destroy_xmlrpc_client(); }
- void new_xmlrpc_client(const char* url, bool no_ssl_verify);
+ void new_xmlrpc_client(const char* url, bool ssl_verify);
void destroy_xmlrpc_client();
};