]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
director: Fix error message when director_username_hash expansion fails
authorjonmoesli <69861248+jonmoesli@users.noreply.github.com>
Wed, 7 Oct 2020 15:48:06 +0000 (17:48 +0200)
committertimo.sirainen <timo.sirainen@open-xchange.com>
Thu, 15 Oct 2020 16:06:22 +0000 (16:06 +0000)
src/director/director.c

index a125cb083c2c60c8653812263f7a46563b4cc63d..d3cb4f3470aa6dad1932e5aedfddb5b5c6472b0e 100644 (file)
@@ -1564,7 +1564,7 @@ director_get_username_hash(struct director *dir, const char *username,
        if (mail_user_hash(username, dir->set->director_username_hash, hash_r,
                           &error))
                return TRUE;
-       e_error(dir->event, "Failed to expand director_user_expire=%s: %s",
+       e_error(dir->event, "Failed to expand director_username_hash=%s: %s",
                dir->set->director_username_hash, error);
        return FALSE;
 }