From 2473fcb14e50c4d1f498675b04d729baa24ccc9d Mon Sep 17 00:00:00 2001 From: Mark Reynolds Date: May 07 2013 20:10:47 +0000 Subject: Ticket 47317 - should set LDAP_OPT_X_SASL_NOCANON to LDAP_OPT_ON by default - revision Description: typo in configuration initialization https://fedorahosted.org/389/ticket/47317 --- diff --git a/ldap/servers/slapd/libglobs.c b/ldap/servers/slapd/libglobs.c index 675c08c..eb250ed 100644 --- a/ldap/servers/slapd/libglobs.c +++ b/ldap/servers/slapd/libglobs.c @@ -1505,7 +1505,7 @@ FrontendConfig_init () { init_return_orig_type = cfg->return_orig_type = LDAP_OFF; init_enable_turbo_mode = cfg->enable_turbo_mode = LDAP_ON; init_connection_buffer = cfg->connection_buffer = CONNECTION_BUFFER_ON; - init_connection_nocanon = cfg->connection_nocanon - LDAP_ON; + init_connection_nocanon = cfg->connection_nocanon = LDAP_ON; #ifdef MEMPOOL_EXPERIMENTAL init_mempool_switch = cfg->mempool_switch = LDAP_ON;