From f0a979c06d92e419d3fe0f21d897794a27730579 Mon Sep 17 00:00:00 2001 From: Kurt Zeilenga Date: Thu, 10 Oct 2002 03:42:47 +0000 Subject: [PATCH] disallow bind_simple_unprotected requires ssf > 1 --- servers/slapd/bind.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/servers/slapd/bind.c b/servers/slapd/bind.c index 646b72f657..1129fa6f43 100644 --- a/servers/slapd/bind.c +++ b/servers/slapd/bind.c @@ -419,7 +419,7 @@ do_bind( goto cleanup; } else if (( global_disallows & SLAP_DISALLOW_BIND_SIMPLE_UNPROTECTED ) - && ( op->o_ssf < global_ssf_set.sss_ssf )) + && ( op->o_ssf <= 1 )) { rc = LDAP_CONFIDENTIALITY_REQUIRED; text = "unwilling to perform simple authentication " -- 2.39.5