diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-04-11 01:26:53 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:51:11 -0500 |
commit | 27db4c6d18b31c2e70211efe3c26816cd5d38b24 (patch) | |
tree | ae86480ee1c2538638470a910d73d00f3f0601cb /source4/lib/ldb/common | |
parent | 0446e6addd5de78880f30df70424bc608ba062dd (diff) | |
download | samba-27db4c6d18b31c2e70211efe3c26816cd5d38b24.tar.gz samba-27db4c6d18b31c2e70211efe3c26816cd5d38b24.tar.bz2 samba-27db4c6d18b31c2e70211efe3c26816cd5d38b24.zip |
r158: cope with or without LDAP in samba build of ldb
(This used to be commit e776ce4f9e6fead235b3cec86d85eb95704f10ef)
Diffstat (limited to 'source4/lib/ldb/common')
-rw-r--r-- | source4/lib/ldb/common/ldb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/ldb/common/ldb.c b/source4/lib/ldb/common/ldb.c index 146745043f..e84473efab 100644 --- a/source4/lib/ldb/common/ldb.c +++ b/source4/lib/ldb/common/ldb.c @@ -52,11 +52,11 @@ struct ldb_context *ldb_connect(const char *url, unsigned int flags, return ltdb_connect(url, flags, options); } -#ifdef HAVE_LDAP +#if HAVE_LDAP if (strncmp(url, "ldap", 4) == 0) { return lldb_connect(url, flags, options); } -#endif /*HAVE_LDAP*/ +#endif errno = EINVAL; return NULL; |