mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-03 20:40:05 -05:00
ITS#8794 - Fix implicit declaration for ldap_is_ldapc_url
Fix building OpenLDAP with -DLDAP_CONNECTIONLESS so that ldap_is_ldapc_url function is defined
This commit is contained in:
parent
85ccf7bbac
commit
6c177e6629
2 changed files with 7 additions and 0 deletions
|
|
@ -2077,6 +2077,12 @@ LDAP_F( int )
|
|||
ldap_is_ldapi_url LDAP_P((
|
||||
LDAP_CONST char *url ));
|
||||
|
||||
#ifdef LDAP_CONNECTIONLESS
|
||||
LDAP_F( int )
|
||||
ldap_is_ldapc_url LDAP_P((
|
||||
LDAP_CONST char *url ));
|
||||
#endif
|
||||
|
||||
LDAP_F( int )
|
||||
ldap_url_parse LDAP_P((
|
||||
LDAP_CONST char *url,
|
||||
|
|
|
|||
|
|
@ -33,6 +33,7 @@
|
|||
#include <ac/unistd.h>
|
||||
|
||||
#include "ldap-int.h"
|
||||
#include "ldap.h"
|
||||
#include "ldap_log.h"
|
||||
|
||||
/* Caller must hold the conn_mutex since simultaneous accesses are possible */
|
||||
|
|
|
|||
Loading…
Reference in a new issue