Displaying 2 results from an estimated 2 matches for "serverctrls".
Did you mean:
servercerts
2002 Jun 21
1
Bug in 2.2.5 ? Configure can't find ldap_start_tls_s ..
...pp----
486dx66:/usr/include # grep --line-number ldap_start_tls_s
ldap*
ldap.h:1075:ldap_start_tls_s LDAP_P((
486dx66:/usr/include #
-----snipp----
Looking into /usr/include/ldap.h from line 1074 says :
-----snipp----
LDAP_F( int )
ldap_start_tls_s LDAP_P((
LDAP *ld,
LDAPControl **serverctrls,
LDAPControl **clientctrls ));
-----snipp----
What shall i do, is it a bug ?
It worked for me in 2.2.4 with the
SAME configure-options
(i use a little script for samba since 2.2.3,
which i show here too :)
-----snipp----
#!/bin/sh
make clean
./configure \
--enable-cups \
--with-utmp \...
2014 Feb 04
1
How to change objectSid?
..._OID = "1.3.6.1.4.1.7165.4.3.16"
LDB_CONTROL_RELAX_OID = "1.3.6.1.4.1.4203.666.5.12"
controls = [ LDAPControl(LDB_CONTROL_PROVISION_OID, criticality=0),
LDAPControl(LDB_CONTROL_RELAX_OID, criticality=0) ]
s4ldap.modify_ext_s(s4dn, modlist, serverctrls=controls,
clientctrls=controls)
I'm using the domain administrator to bind to the server.
The error that I get:
ldap.UNWILLING_TO_PERFORM: {'info': '00002035: samldb: objectSid must
not be specified!', 'desc': 'Server is unwilling to perform'}
Is...