From: Timo Sirainen Date: Mon, 28 Oct 2013 09:50:40 +0000 (+0200) Subject: doveadm-server: Minor error message improvement. X-Git-Tag: 2.2.7~40 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e67a891ef14857c83480a7fbeae94a321353455c;p=thirdparty%2Fdovecot%2Fcore.git doveadm-server: Minor error message improvement. --- diff --git a/src/doveadm/client-connection.c b/src/doveadm/client-connection.c index 6fa078e8b6..ddafa4a15f 100644 --- a/src/doveadm/client-connection.c +++ b/src/doveadm/client-connection.c @@ -263,7 +263,7 @@ client_connection_authenticate(struct client_connection *conn) /* FIXME: some day we should probably let auth process do this and support all kinds of authentication */ if (strncmp(line, "PLAIN\t", 6) != 0) { - i_error("doveadm client attempted non-PLAIN authentication"); + i_error("doveadm client attempted non-PLAIN authentication: %s", line); return -1; }