From: Stephan Bosch Date: Mon, 8 Sep 2025 03:01:36 +0000 (+0200) Subject: auth: mech-winbind - GSS-SPNEGO mechanism is erroneously marked as not accepting NUL X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2ee5ab732d1901fa5b2984d276988f105db7d46e;p=thirdparty%2Fdovecot%2Fcore.git auth: mech-winbind - GSS-SPNEGO mechanism is erroneously marked as not accepting NUL --- diff --git a/src/auth/mech-winbind.c b/src/auth/mech-winbind.c index fa2fe152fa..2ec4361513 100644 --- a/src/auth/mech-winbind.c +++ b/src/auth/mech-winbind.c @@ -352,7 +352,7 @@ const struct mech_module mech_winbind_ntlm = { const struct mech_module mech_winbind_spnego = { "GSS-SPNEGO", - .flags = 0, + .flags = MECH_SEC_ALLOW_NULS, .passdb_need = MECH_PASSDB_NEED_NOTHING, mech_winbind_spnego_auth_new,