Skip to content
Snippets Groups Projects
Commit 782d767c authored by Howard Chu's avatar Howard Chu
Browse files

ITS#3763 fix typo in slap_timestamp

parent 91bdea28
No related branches found
No related tags found
No related merge requests found
......@@ -844,7 +844,7 @@ void slap_timestamp( time_t *tm, struct berval *bv )
ltm = gmtime_r( tm, &ltm_buf );
#else
ldap_pvt_thread_mutex_lock( &gmtime_mutex );
ltm = gmtime( &tm );
ltm = gmtime( tm );
#endif
bv->bv_len = lutil_gentime( bv->bv_val, bv->bv_len, ltm );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment