]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
auth: mech-winbind - GSS-SPNEGO mechanism is erroneously marked as not accepting NUL
authorStephan Bosch <stephan.bosch@open-xchange.com>
Mon, 8 Sep 2025 03:01:36 +0000 (05:01 +0200)
committeraki.tuomi <aki.tuomi@open-xchange.com>
Mon, 8 Sep 2025 11:03:42 +0000 (11:03 +0000)
src/auth/mech-winbind.c

index fa2fe152fa49c2666079ef086ecc7439de9ace5f..2ec43615138bb05d3d35f07d1c7751448c71fa0b 100644 (file)
@@ -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,