Skip to content
Snippets Groups Projects
Commit 9bef1a2b authored by Hallvard Furuseth's avatar Hallvard Furuseth
Browse files

Obey CTIME_R_RETURNS_INT

parent caddcf86
No related branches found
No related tags found
No related merge requests found
......@@ -70,6 +70,8 @@ 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
# elif CTIME_R_NARGS > 2 && defined(CTIME_R_RETURNS_INT)
return( ctime_r(tp,buf,26) < 0 ? 0 : buf );
# elif CTIME_R_NARGS > 2
return ctime_r(tp,buf,26);
# else
......
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