e6d553c7b2
- Remove csync2-1.34-pure-gnutls-r2.patch - Remove fix-missing-sentinels.diff OBS-URL: https://build.opensuse.org/package/show/network:ha-clustering:Factory/csync2?expand=0&rev=22
22 lines
609 B
Diff
22 lines
609 B
Diff
commit 456732b
|
|
Author: Tim Serong <tserong@suse.com>
|
|
Date: Mon Sep 2 16:50:27 2013 +1000
|
|
|
|
Fix typo in csync2_ssl_cert.pem filename
|
|
|
|
Signed-off-by: Tim Serong <tserong@suse.com>
|
|
|
|
diff --git a/conn.c b/conn.c
|
|
index 2b3611d..5e54693 100644
|
|
--- a/conn.c
|
|
+++ b/conn.c
|
|
@@ -281,7 +281,7 @@ int conn_activate_ssl(int server_role)
|
|
return 0;
|
|
|
|
ASPRINTF(&ssl_keyfile, "%s/csync2_ssl_key.pem", systemdir);
|
|
- ASPRINTF(&ssl_certfile, "%s/csync_ssl_cert.pem", systemdir);
|
|
+ ASPRINTF(&ssl_certfile, "%s/csync2_ssl_cert.pem", systemdir);
|
|
|
|
gnutls_global_init();
|
|
gnutls_global_set_log_function(ssl_log);
|