mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
I should finish my morning coke before making my first commit of the day.
Fixes errors in prior commits.
This commit is contained in:
parent
335a8bd0ad
commit
5282ecd94b
@ -210,7 +210,7 @@ get_filter(
|
||||
if( err != LDAP_SUCCESS ) {
|
||||
/* unrecognized attribute description or other error */
|
||||
f->f_choice = SLAPD_FILTER_COMPUTED;
|
||||
f->f_result = SLAPD_COMPARE_FALSE;
|
||||
f->f_result = LDAP_COMPARE_FALSE;
|
||||
*fstr = ch_strdup( "(unrecogized=*)" );
|
||||
ch_free( type.bv_val );
|
||||
err = LDAP_SUCCESS;
|
||||
|
@ -552,7 +552,7 @@ int slap_mods_opattrs(
|
||||
struct berval name, timestamp, csn;
|
||||
time_t now = slap_get_time();
|
||||
char timebuf[22];
|
||||
char csnbuf[128];
|
||||
char csnbuf[64];
|
||||
struct tm *ltm;
|
||||
Modifications *mod;
|
||||
|
||||
@ -583,7 +583,7 @@ int slap_mods_opattrs(
|
||||
|
||||
if( op->o_tag == LDAP_REQ_ADD ) {
|
||||
struct berval uuid;
|
||||
char uuidbuf[64];
|
||||
char uuidbuf[40];
|
||||
|
||||
uuid.bv_len = lutil_uuidstr( uuidbuf, sizeof( uuidbuf ) );
|
||||
uuid.bv_val = uuidbuf;
|
||||
|
Loading…
Reference in New Issue
Block a user