From: Timo Sirainen Date: Thu, 2 Feb 2017 09:47:24 +0000 (+0200) Subject: dict: Fix error logging if TIMESTAMP parameters are wrong. X-Git-Tag: 2.3.0.rc1~2199 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=18c01c2573243be3eaaf3c584236d865ae3390fd;p=thirdparty%2Fdovecot%2Fcore.git dict: Fix error logging if TIMESTAMP parameters are wrong. --- diff --git a/src/dict/dict-commands.c b/src/dict/dict-commands.c index 4fe78572ac..2044c34bca 100644 --- a/src/dict/dict-commands.c +++ b/src/dict/dict-commands.c @@ -556,7 +556,7 @@ static int cmd_timestamp(struct dict_connection_cmd *cmd, const char *line) if (str_array_length(args) != 3 || str_to_llong(args[1], &tv_sec) < 0 || str_to_uint(args[2], &tv_nsec) < 0) { - i_error("dict client: ATOMIC_INC: broken input"); + i_error("dict client: TIMESTAMP: broken input"); return -1; }