I should finish my morning coke before making my first commit of the day.

Fixes errors in prior commits.
This commit is contained in:
Kurt Zeilenga 2001-12-05 16:41:45 +00:00
parent 335a8bd0ad
commit 5282ecd94b
2 changed files with 3 additions and 3 deletions

View File

@ -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;

View File

@ -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;