diff options
author | Andrew Bartlett <abartlet@samba.org> | 2003-06-21 00:45:03 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2003-06-21 00:45:03 +0000 |
commit | f70cc4cdc188fd8bf9f8f84cb55d15c122e463dd (patch) | |
tree | 4f20ce7c03c2e9d1d34afe81307f60e17003bc6a /source3/lib/smbldap.c | |
parent | deef8647c7f8f7ce286d92ff373812f9607b7375 (diff) | |
download | samba-f70cc4cdc188fd8bf9f8f84cb55d15c122e463dd.tar.gz samba-f70cc4cdc188fd8bf9f8f84cb55d15c122e463dd.tar.bz2 samba-f70cc4cdc188fd8bf9f8f84cb55d15c122e463dd.zip |
This patch works towards to goal of common code shared between idmap_ldap
and pdb_ldap.
So far, it's just a function rename, so that the next patch can be a very
simple matter of copying functions, without worrying about what changed
in the process.
Also removes the 'static' pointers for the rebind procedures, replacing them
with a linked list of value/key lookups. (Only needed on older LDAP client
libs)
Andrew Bartlett
(This used to be commit f93167a7e1c56157481a934d2225fe19786a3bff)
Diffstat (limited to 'source3/lib/smbldap.c')
-rw-r--r-- | source3/lib/smbldap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/lib/smbldap.c b/source3/lib/smbldap.c index bb37222d5a..b627134446 100644 --- a/source3/lib/smbldap.c +++ b/source3/lib/smbldap.c @@ -262,7 +262,7 @@ BOOL fetch_ldap_pw(char **dn, char** pw) manage memory used by the array, by each struct, and values ***********************************************************************/ -void ldap_set_mod (LDAPMod *** modlist, int modop, const char *attribute, const char *value) +void smbldap_set_mod (LDAPMod *** modlist, int modop, const char *attribute, const char *value) { LDAPMod **mods; int i; @@ -344,3 +344,4 @@ void ldap_set_mod (LDAPMod *** modlist, int modop, const char *attribute, const *modlist = mods; } + |