[Date Prev][Date Next] [Chronological] [Thread] [Top]

bind_simple_unprotected not implemented (ITS#2651)



Full_Name: Paul B. Henson
Version: 2.1.22
OS: Solaris
URL: 
Submission from: (NULL) (134.71.203.46)


bind_simple_unprotected not recognized by config file parser, although
SLAP_DISALLOW_BIND_SIMPLE_UNPROTECTED exists and functions correctly if added to
flags.

This patch would appear to fix the problem:

*** tmp/openldap-2.1.17/servers/slapd/config.c  Wed Mar 26 19:04:06 2003
--- openldap-2.1.17/servers/slapd/config.c      Wed May  7 17:21:58 2003
***************
*** 1321,1326 ****
--- 1321,1329 ----
                                } else if( strcasecmp( cargv[i], "bind_simple" )
== 0 ) {
                                        disallows |= SLAP_DISALLOW_BIND_SIMPLE;

+                               } else if( strcasecmp( cargv[i],
"bind_simple_unprotected" ) == 0 ) {
+                                       disallows |=
SLAP_DISALLOW_BIND_SIMPLE_UNPROTECTED;
+
                                } else if( strcasecmp( cargv[i], "bind_krbv4" )
== 0 ) {
                                        disallows |= SLAP_DISALLOW_BIND_KRBV4;