]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
dict: Fix error logging if TIMESTAMP parameters are wrong.
authorTimo Sirainen <timo.sirainen@dovecot.fi>
Thu, 2 Feb 2017 09:47:24 +0000 (11:47 +0200)
committerTimo Sirainen <timo.sirainen@dovecot.fi>
Thu, 2 Feb 2017 09:47:24 +0000 (11:47 +0200)
src/dict/dict-commands.c

index 4fe78572ac0077345a6a340844484f8854a62206..2044c34bca12cf97227e40b9c01370cf454ec9b1 100644 (file)
@@ -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;
        }