mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-25 00:02:53 -05:00
Use #error if ctime_r nargs are screwy.
This commit is contained in:
parent
c72cb0c8fe
commit
d8032bcbaa
1 changed files with 1 additions and 1 deletions
|
|
@ -69,7 +69,7 @@ char *ldap_pvt_ctime( const time_t *tp, char *buf )
|
|||
{
|
||||
#ifdef USE_CTIME_R
|
||||
# if (CTIME_R_NARGS > 3) || (CTIME_R_NARGS < 2)
|
||||
choke me! nargs should have 2 or 3
|
||||
# error "CTIME_R_NARGS should be 2 or 3"
|
||||
# elif CTIME_R_NARGS > 2 && defined(CTIME_R_RETURNS_INT)
|
||||
return( ctime_r(tp,buf,26) < 0 ? 0 : buf );
|
||||
# elif CTIME_R_NARGS > 2
|
||||
|
|
|
|||
Loading…
Reference in a new issue