aboutsummaryrefslogtreecommitdiffstats
path: root/smtp.c
diff options
context:
space:
mode:
Diffstat (limited to 'smtp.c')
-rw-r--r--smtp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/smtp.c b/smtp.c
index 2517d15a..96a708e3 100644
--- a/smtp.c
+++ b/smtp.c
@@ -55,7 +55,7 @@ static void SMTP_auth_error(int sock, const char *msg)
{
SockPrintf(sock, "*\r\n");
SockRead(sock, smtp_response, sizeof(smtp_response) - 1);
- if (outlevel >= O_MONITOR) report(stdout, msg);
+ if (outlevel >= O_MONITOR) report(stdout, "%s", msg);
}
static void SMTP_auth(int sock, char smtp_mode, char *username, char *password, char *buf)