mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-26 09:39:45 -05:00
Make time counter zero based
This commit is contained in:
parent
2027e19e01
commit
c82ae524b9
1 changed files with 1 additions and 1 deletions
|
|
@ -67,7 +67,7 @@ lutil_csnstr(char *buf, size_t len, unsigned int replica, unsigned int mod)
|
|||
csntime = t;
|
||||
csnop = 0;
|
||||
}
|
||||
op = ++csnop;
|
||||
op = csnop++;
|
||||
|
||||
#ifdef HAVE_GMTIME_R
|
||||
ltm = gmtime_r( &t, <m_buf );
|
||||
|
|
|
|||
Loading…
Reference in a new issue