summaryrefslogtreecommitdiffstats
path: root/inc
diff options
context:
space:
mode:
authorMichal Toman <mtoman@redhat.com>2010-07-13 18:53:39 +0200
committerKarel Klic <kklic@redhat.com>2010-07-13 18:53:39 +0200
commitd56eb7e6f0d3c1f5df52daedbea5654e1c714fd2 (patch)
tree4bd9a19e30f367fa0e0c5a7ef2f43bb64838269e /inc
parent13ea287d7d81d9d9dba957228652e1d8dc36388e (diff)
downloadabrt-d56eb7e6f0d3c1f5df52daedbea5654e1c714fd2.tar.gz
abrt-d56eb7e6f0d3c1f5df52daedbea5654e1c714fd2.tar.xz
abrt-d56eb7e6f0d3c1f5df52daedbea5654e1c714fd2.zip
changing NoSSLVerify to SSLVerify in bugzilla plugin
Diffstat (limited to 'inc')
-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();
};