From ce0c4a73cc56a47c3bc88316dcef4a13caa742bc Mon Sep 17 00:00:00 2001 From: Simon Schubert Date: Thu, 9 Jul 2009 14:37:15 +0200 Subject: [PATCH] dma: fix two typos and a word order problem Submitted-by: Peter Pentchev --- libexec/dma/crypto.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libexec/dma/crypto.c b/libexec/dma/crypto.c index b1e6f0c345..d6bba40a1f 100644 --- a/libexec/dma/crypto.c +++ b/libexec/dma/crypto.c @@ -155,7 +155,7 @@ smtp_init_crypto(struct qitem *it, int fd, int feature) error = SSL_connect(config->ssl); if (error < 0) { syslog(LOG_ERR, "%s: remote delivery failed:" - " SSL handshake fataly failed: %m", it->queueid); + " SSL handshake failed fatally: %m", it->queueid); return (-1); } @@ -163,7 +163,7 @@ smtp_init_crypto(struct qitem *it, int fd, int feature) cert = SSL_get_peer_certificate(config->ssl); if (cert == NULL) { syslog(LOG_ERR, "%s: remote delivery deferred:" - " Peer did not provied certificate: %m", it->queueid); + " Peer did not provide certificate: %m", it->queueid); } X509_free(cert); -- 2.41.0