From: jonmoesli <69861248+jonmoesli@users.noreply.github.com> Date: Wed, 7 Oct 2020 15:48:06 +0000 (+0200) Subject: director: Fix error message when director_username_hash expansion fails X-Git-Tag: 2.3.13~102 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f0c15f2d6c15dd1a2b1e2618f70c21c22b2edcde;p=thirdparty%2Fdovecot%2Fcore.git director: Fix error message when director_username_hash expansion fails --- diff --git a/src/director/director.c b/src/director/director.c index a125cb083c..d3cb4f3470 100644 --- a/src/director/director.c +++ b/src/director/director.c @@ -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; }