X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;ds=sidebyside;f=servers%2Fslapd%2Fschema.c;h=c2f0970ff9b1615a0e4381909ee6a11f99b1979e;hb=46fab059977aed107f53c96ced0f35cfff8c7836;hp=69d243b04d5dc4fb540fc7483b212111b121f6eb;hpb=7e87f547160f78690b4fe2a6bdf7f67505de8ee4;p=openldap diff --git a/servers/slapd/schema.c b/servers/slapd/schema.c index 69d243b04d..c2f0970ff9 100644 --- a/servers/slapd/schema.c +++ b/servers/slapd/schema.c @@ -2,7 +2,7 @@ /* $OpenLDAP$ */ /* This work is part of OpenLDAP Software . * - * Copyright 1998-2004 The OpenLDAP Foundation. + * Copyright 1998-2005 The OpenLDAP Foundation. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -117,10 +117,6 @@ schema_info( Entry **entry, const char **text ) } { - struct tm *ltm; -#ifdef HAVE_GMTIME_R - struct tm ltm_buf; -#endif char timebuf[ LDAP_LUTIL_GENTIME_BUFSIZE ]; /* @@ -134,19 +130,10 @@ schema_info( Entry **entry, const char **text ) * AND modified at server startup time ... */ -#ifdef HAVE_GMTIME_R - ltm = gmtime_r( &starttime, <m_buf ); -#else - ldap_pvt_thread_mutex_lock( &gmtime_mutex ); - ltm = gmtime( &starttime ); -#endif /* HAVE_GMTIME_R */ - lutil_gentime( timebuf, sizeof(timebuf), ltm ); -#ifndef HAVE_GMTIME_R - ldap_pvt_thread_mutex_unlock( &gmtime_mutex ); -#endif - vals[0].bv_val = timebuf; - vals[0].bv_len = strlen( timebuf ); + vals[0].bv_len = sizeof( timebuf ); + + slap_timestamp( &starttime, vals ); if( attr_merge_one( e, ad_createTimestamp, vals, NULL ) ) { /* Out of memory, do something about it */