diff options
author | Gerald Carter <jerry@samba.org> | 2003-06-06 20:31:19 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2003-06-06 20:31:19 +0000 |
commit | 70da79f8a8abf615ce0bb938853e31192c079534 (patch) | |
tree | 2def0ec6ce53ed9213c0e8c6379eeeb09008b3de /source3/include | |
parent | c2547dcc4820a487ce00874649368e6cd41a67cf (diff) | |
download | samba-70da79f8a8abf615ce0bb938853e31192c079534.tar.gz samba-70da79f8a8abf615ce0bb938853e31192c079534.tar.bz2 samba-70da79f8a8abf615ce0bb938853e31192c079534.zip |
fix build on systems w/o LDAP libs
(This used to be commit f33aeaa039d49b4eef884b27dc81d3418a051f1a)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/smbldap.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/source3/include/smbldap.h b/source3/include/smbldap.h index c669f77425..987206b450 100644 --- a/source3/include/smbldap.h +++ b/source3/include/smbldap.h @@ -19,6 +19,8 @@ */ +#ifdef HAVE_LDAP + #ifndef _SMBLDAP_H #define _SMBLDAP_H @@ -100,4 +102,16 @@ extern ATTRIB_MAP_ENTRY groupmap_attr_list_to_delete[]; extern ATTRIB_MAP_ENTRY idpool_attr_list[]; extern ATTRIB_MAP_ENTRY sidmap_attr_list[]; +/* Function declarations -- not included in proto.h so we don't + have to worry about LDAP structure types */ + +const char* get_attr_key2string( ATTRIB_MAP_ENTRY table[], int key ); +char** get_attr_list( ATTRIB_MAP_ENTRY table[] ); +void free_attr_list( char **list ); +BOOL fetch_ldap_pw(char **dn, char** pw); +void ldap_set_mod (LDAPMod *** modlist, int modop, const char *attribute, const char *value); + + #endif /* _SMBLDAP_H */ + +#endif /* HAVE_LDAP */ |