Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions conn.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down Expand Up @@ -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;
}
}
Expand Down
2 changes: 1 addition & 1 deletion doc/csync2.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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]]
Expand Down