Skip to content
Snippets Groups Projects
Commit 185641cb authored by Mark Valence's avatar Mark Valence
Browse files

ldap_is_ldaps_url takes a char *. Is there a better fix, since the ur

l is already parsed?
parent 13ddec65
No related branches found
No related tags found
No related merge requests found
......@@ -218,7 +218,7 @@ static Listener * open_listener( const char* url )
}
#ifndef HAVE_TLS
if( ldap_is_ldaps_url( lud ) ) {
if( ldap_is_ldaps_url( url ) ) {
Debug( LDAP_DEBUG_ANY,
"daemon: TLS not supported (%s)\n",
url, 0, 0 );
......@@ -231,7 +231,7 @@ static Listener * open_listener( const char* url )
}
#else
l.sl_is_tls = ldap_is_ldaps_url( lud );
l.sl_is_tls = ldap_is_ldaps_url( url );
if(! lud->lud_port ) {
lud->lud_port = l.sl_is_tls ? LDAPS_PORT : LDAP_PORT;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment