Displaying 3 results from an estimated 3 matches for "ldap_opt_error_str".
2002 Mar 01
3
--with-ldapsam Compile error on Solaris 8
...; undeclared (first use in this
function)
passdb/pdb_ldap.c: In function `ldap_search_one_user':
passdb/pdb_ldap.c:190: warning: passing arg 4 of `ldap_search_s'
discards qualifiers from pointer target type
passdb/pdb_ldap.c: In function `pdb_delete_sam_account':
passdb/pdb_ldap.c:883: `LDAP_OPT_ERROR_STRING' undeclared (first use in
this function)
passdb/pdb_ldap.c: In function `pdb_update_sam_account':
passdb/pdb_ldap.c:936: `LDAP_OPT_ERROR_STRING' undeclared (first use in
this function)
passdb/pdb_ldap.c: In function `pdb_add_sam_account':
passdb/pdb_ldap.c:1028: `LDAP_OPT_ERROR_S...
2004 Jan 22
2
RPC: Problem Deleting LDAP-Entries in pdb_ldap.c
.........), where uid is not
present any more
an extract of the function in pdb_ldap.c
---------------------------------------------------------------------------
if (rc != LDAP_SUCCESS) {
char *ld_error = NULL;
ldap_get_option(ldap_state->ldap_struct,
LDAP_OPT_ERROR_STRING,
&ld_error);
DEBUG(0, ("could not delete attributes for %s, error:
%s (%s)\n",
dn, ldap_err2string(rc),
ld_error?ld_error:"unknown"));
SAFE_FREE(ld_error);
ld...
2008 Jul 02
4
samba + slave OpenLdap (read-only)
Hello,
I'm trying to config samba to use a openldap replica (slave) base.
Every thing is working, except when I try to join a machine to a domain.
Samba try to write some attributes in openldap, but this database (slave) is
read-only, so this operation fails.
Openldap can return a REFERRAL when a client (samba) try to do a
modification on a slave database and this already is happening.