Insert Y2K fix (hidden behind -DLDAP_Y2K).

This commit is contained in:
Kurt Zeilenga 1998-09-16 08:33:34 +00:00
parent 916a5f9bd2
commit 007cbfc8f1
3 changed files with 31 additions and 11 deletions

View file

@ -145,7 +145,7 @@ do_add( conn, op )
static void
add_created_attrs( Operation *op, Entry *e )
{
char buf[20];
char buf[22];
struct berval bv;
struct berval *bvals[2];
Attribute **a, **next;
@ -183,7 +183,11 @@ add_created_attrs( Operation *op, Entry *e )
pthread_mutex_lock( &currenttime_mutex );
ltm = localtime( &currenttime );
#ifdef LDAP_Y2K
strftime( buf, sizeof(buf), "%Y%m%d%H%M%SZ", ltm );
#else
strftime( buf, sizeof(buf), "%y%m%d%H%M%SZ", ltm );
#endif
pthread_mutex_unlock( &currenttime_mutex );
bv.bv_val = buf;

View file

@ -200,7 +200,7 @@ modlist_free(
static void
add_lastmods( Operation *op, LDAPMod **mods )
{
char buf[20];
char buf[22];
struct berval bv;
struct berval *bvals[2];
LDAPMod **m;
@ -252,7 +252,11 @@ add_lastmods( Operation *op, LDAPMod **mods )
pthread_mutex_lock( &currenttime_mutex );
ltm = localtime( &currenttime );
#ifdef LDAP_Y2K
strftime( buf, sizeof(buf), "%Y%m%d%H%M%SZ", ltm );
#else
strftime( buf, sizeof(buf), "%y%m%d%H%M%SZ", ltm );
#endif
pthread_mutex_unlock( &currenttime_mutex );
bv.bv_val = buf;
bv.bv_len = strlen( bv.bv_val );

View file

@ -49,7 +49,7 @@ void
monitor_info( Connection *conn, Operation *op )
{
Entry *e;
char buf[BUFSIZ], buf2[20];
char buf[BUFSIZ], buf2[22];
struct berval val;
struct berval *vals[2];
int i, nconns, nwritewaiters, nreadwaiters;
@ -92,7 +92,11 @@ monitor_info( Connection *conn, Operation *op )
}
pthread_mutex_lock( &currenttime_mutex );
ltm = localtime( &c[i].c_starttime );
#ifdef LDAP_Y2K
strftime( buf2, sizeof(buf2), "%Y%m%d%H%M%SZ", ltm );
#else
strftime( buf2, sizeof(buf2), "%y%m%d%H%M%SZ", ltm );
#endif
pthread_mutex_unlock( &currenttime_mutex );
pthread_mutex_lock( &c[i].c_dnmutex );
@ -156,7 +160,11 @@ monitor_info( Connection *conn, Operation *op )
pthread_mutex_lock( &currenttime_mutex );
ltm = localtime( &currenttime );
#ifdef LDAP_Y2K
strftime( buf, sizeof(buf), "%Y%m%d%H%M%SZ", ltm );
#else
strftime( buf, sizeof(buf), "%y%m%d%H%M%SZ", ltm );
#endif
pthread_mutex_unlock( &currenttime_mutex );
val.bv_val = buf;
val.bv_len = strlen( buf );
@ -164,7 +172,11 @@ monitor_info( Connection *conn, Operation *op )
pthread_mutex_lock( &currenttime_mutex );
ltm = localtime( &starttime );
#ifdef LDAP_Y2K
strftime( buf, sizeof(buf), "%Y%m%d%H%M%SZ", ltm );
#else
strftime( buf, sizeof(buf), "%y%m%d%H%M%SZ", ltm );
#endif
pthread_mutex_unlock( &currenttime_mutex );
val.bv_val = buf;
val.bv_len = strlen( buf );