- Apr 20, 2002
-
-
Howard Chu authored
without NEW_LOGGING. Added logfile.
-
Howard Chu authored
-
Howard Chu authored
-
Howard Chu authored
-
Howard Chu authored
-
Howard Chu authored
-
- Apr 19, 2002
-
-
Jong Hyuk Choi authored
-
Stig Venaas authored
from NFC to NFKC in UTF8bvnormalize() and UTF8bvnormcmp()
-
Howard Chu authored
-
Howard Chu authored
-
- Apr 18, 2002
-
-
Kurt Zeilenga authored
Re: Untested patch: back-tcl used wrong types (ITS#1719) ================ Written by Hallvard B. Furuseth and placed into the public domain. This software is not subject to any license of the University of Oslo. ================ > I turned it into an automatic variable. ...and used a variable-length array. That's a gcc extension, it is not in ANSI C89. (It is in C99 though.) You seem to be compiling without -pedantic:-) Anyway, here is a patch to turn it back into ch_malloc(), plus some README fixes
-
Howard Chu authored
-
Howard Chu authored
-
Howard Chu authored
deleted ldap_pvt_tls_get_peer() changed ldap_pvt_tls_get_peer_dn() to use ldap_X509dn2bv() added ldap_pvt_tls_get_my_dn()
-
Howard Chu authored
normalized LDAP DNs now. Changed dnDCEnormalize to dnX509normalize, added dnX509peerNormalize, based on new ldap_X509dn2bv() etc.
-
Howard Chu authored
-
Howard Chu authored
-
Howard Chu authored
working ifor Cyrus 2. (Both GSSAPI and EXTERNAL are broken at the moment.)
-
- Apr 17, 2002
-
-
Howard Chu authored
-
Kurt Zeilenga authored
-
Kurt Zeilenga authored
-
Kurt Zeilenga authored
Here a patch for another: A spurious `"' in back-ldbm. From Hallvard.
-
Howard Chu authored
-
- Apr 16, 2002
-
-
Julius Enarusai authored
Added LDAP_LOG Messages
-
Julius Enarusai authored
Added LDAP_LOG Messages
-
Jong Hyuk Choi authored
-
Howard Chu authored
after v3refs have been chased. They are fully processed by the time we get back, so we should just return the current result message to the caller.
-
Howard Chu authored
dn_openssl2ldap() and sasl_external_x509dn_convert. Fixed realm handling for foreign Kerberos realms embedded in usernames.
-
Luke Howard authored
-
Howard Chu authored
by ITS#1360.
-
Luke Howard authored
-
Howard Chu authored
-
Luke Howard authored
-
Luke Howard authored
-
Luke Howard authored
-
Luke Howard authored
-
Luke Howard authored
-
Luke Howard authored
-
- Apr 15, 2002
-
-
Kurt Zeilenga authored
================ Written by Hallvard B. Furuseth and placed into the public domain. This software is not subject to any license of the University of Oslo. ================ Bug fixes: - acl_regex_normalized_dn(pattern): * used pattern->bv_len even though it claimed not to, * would walk past the end of strings that ended (incorrectly) with a single '\'. - style=regex checked for "^.*$$" twice but not for "^.*$". - the code did not notice if dnNormalize2() failed, and would (at least in one case) treat a bad DN as '*'. Some cleanup: - changed regtest() to return void, since the return value was unused. - changed acl_regex_normalized_dn() to take a string input argument instead of a half-filled berval, it looks saner that way. Hallvard B. Furuseth <h.b.furuseth@usit.uio.no>, April 2002.
-
Kurt Zeilenga authored
================ Written by Hallvard B. Furuseth and placed into the public domain. This software is not subject to any license of the University of Oslo. ================ Here are fixes for more places where the argument to ctype.h functions should be in the range of `unsigned char'. Explanation of the last patch (to schema_init.c:bvcasechr()): TOLOWER() and TOUPPER() return values in the range of `unsigned char', but bvcasechr() then compares those values with a plain `char'. So I convert the return values from TOLOWER()/TOUPPER() to `char' first. Hallvard B. Furuseth <h.b.furuseth@usit.uio.no>, April 2002.
-