From 2ee5ab732d1901fa5b2984d276988f105db7d46e Mon Sep 17 00:00:00 2001 From: Stephan Bosch Date: Mon, 8 Sep 2025 05:01:36 +0200 Subject: [PATCH] auth: mech-winbind - GSS-SPNEGO mechanism is erroneously marked as not accepting NUL --- src/auth/mech-winbind.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- 2.47.3