From 0e89d6482f1274e400264ad59315906a47a3cbe5 Mon Sep 17 00:00:00 2001 From: "Heiko Schlittermann (HS12-RIPE)" Date: Thu, 1 Oct 2015 10:58:18 +0200 Subject: [PATCH] Fix typo in debug output --- src/src/spam.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/src/spam.c b/src/src/spam.c index 457aa3a36..118fcfa8a 100644 --- a/src/src/spam.c +++ b/src/src/spam.c @@ -348,7 +348,7 @@ start = time(NULL); || sd->retry <= 0 ) break; - DEBUG(D_acl) debug_printf("sspamd: erver %s: retry conn\n", sd->hostspec); + DEBUG(D_acl) debug_printf("spamd: server %s: retry conn\n", sd->hostspec); while (sd->retry > 0) sd->retry = sleep(sd->retry); } if (spamd_sock >= 0) @@ -397,7 +397,7 @@ if (sd->is_rspamd) if ((authid = expand_string(US"$authenticated_id")) != NULL && *authid != '\0') req_str = string_sprintf("%sUser: %s\r\n", req_str, authid); req_str = string_sprintf("%s\r\n", req_str); - wrote = send(spamd_sock, req_str, Ustrlen(req_str), 0); + wrote = send(spamd_sock, req_str, Ustrlen(req_str), 0); } else { /* spamassassin variant */ -- 2.39.5