From: Volker Lendecke Date: Tue, 21 Jul 2026 09:50:10 +0000 (+0200) Subject: ldap_server: Fix -Wswitch in case we want to implement SICILY X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=beca9bd2ca377cae249292b99ca4ab29fcec6a10;p=thirdparty%2Fsamba.git ldap_server: Fix -Wswitch in case we want to implement SICILY See [MS-ADTS] 5.1.1.1.3 Sicily Authentication Signed-off-by: Volker Lendecke Reviewed-by: Anoop C S --- diff --git a/source4/ldap_server/ldap_bind.c b/source4/ldap_server/ldap_bind.c index f9c7dce312f..13075cab3c2 100644 --- a/source4/ldap_server/ldap_bind.c +++ b/source4/ldap_server/ldap_bind.c @@ -742,6 +742,8 @@ NTSTATUS ldapsrv_BindRequest(struct ldapsrv_call *call) return ldapsrv_BindSimple(call); case LDAP_AUTH_MECH_SASL: return ldapsrv_BindSASL(call); + default: + break; } reply = ldapsrv_init_reply(call, LDAP_TAG_BindResponse);