From 0913cdc341d25b48169fe86dc4a4ab15dd5d6f51 Mon Sep 17 00:00:00 2001 From: Eike Waldt Date: Fri, 14 Feb 2020 10:22:20 +0100 Subject: [PATCH] fix this typo --- conn.c | 8 ++++---- doc/csync2.adoc | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/conn.c b/conn.c index c013860..fc3793f 100644 --- a/conn.c +++ b/conn.c @@ -392,8 +392,8 @@ int conn_check_peer_cert(const char *peername, int callfatal) peercerts = gnutls_certificate_get_peers(conn_tls_session, &npeercerts); if(peercerts == NULL || npeercerts == 0) { if (callfatal) - csync_fatal("Peer did not provide an SSL X509 cetrificate.\n"); - csync_debug(1, "Peer did not provide an SSL X509 cetrificate.\n"); + csync_fatal("Peer did not provide an SSL X509 certificate.\n"); + csync_debug(1, "Peer did not provide an SSL X509 certificate.\n"); return 0; } @@ -426,8 +426,8 @@ int conn_check_peer_cert(const char *peername, int callfatal) if (!cert_is_ok) { if (callfatal) - csync_fatal("Peer did provide a wrong SSL X509 cetrificate.\n"); - csync_debug(1, "Peer did provide a wrong SSL X509 cetrificate.\n"); + csync_fatal("Peer did provide a wrong SSL X509 certificate.\n"); + csync_debug(1, "Peer did provide a wrong SSL X509 certificate.\n"); return 0; } } diff --git a/doc/csync2.adoc b/doc/csync2.adoc index d33cc3d..0dba1ff 100644 --- a/doc/csync2.adoc +++ b/doc/csync2.adoc @@ -589,7 +589,7 @@ Csync^2^ gets interrupted in the middle of the synchronization process. In this case the records in the action table are processed when Csync^2^ is executed the next time. -The x509_cert table is used to cache the SSL cetrificates used by the +The x509_cert table is used to cache the SSL certificates used by the other hosts in the csync2 cluster (like the SSH known_hosts file). [[running-csync2]]