From e026df75b0c1602716da2928e5ca75c641d4ee57 Mon Sep 17 00:00:00 2001 From: KLuka Date: Fri, 4 Dec 2015 18:14:51 +0100 Subject: [PATCH] Fixed spelling errors reported by lintian --- libhttp/ssl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libhttp/ssl.c b/libhttp/ssl.c index 083f375..cd0d0e3 100644 --- a/libhttp/ssl.c +++ b/libhttp/ssl.c @@ -411,7 +411,7 @@ static void sslGenerateCertificate(const char *certificate, if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) { warn("[ssl] Failed to generate self-signed certificate \"%s\"!", certificate); } else { - info("[ssl] Certificate succesfully generated."); + info("[ssl] Certificate successfully generated."); } } } @@ -675,7 +675,7 @@ static SSL_CTX *sslMakeContext(void) { SSL_CTX_set_info_callback(context, sslInfoCallback); - debug("[ssl] Server context succesfully initialized..."); + debug("[ssl] Server context successfully initialized..."); return context; } #endif