X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=libraries%2Flibldap%2Futil-int.c;h=c5d17fc4dd825610d39bec7db7f7b2cb42e61606;hb=64d5725662d33a168055df6db2ea06c366a1d0f1;hp=fb6e894ee7a4ce814f6d1d682848d5927492f4f9;hpb=fb1227a54747cd827389d9f4ba646eaceb26fcfa;p=openldap diff --git a/libraries/libldap/util-int.c b/libraries/libldap/util-int.c index fb6e894ee7..c5d17fc4dd 100644 --- a/libraries/libldap/util-int.c +++ b/libraries/libldap/util-int.c @@ -22,7 +22,7 @@ #include "portable.h" -#include +#include #include #include @@ -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 @@ -249,10 +249,10 @@ int ldap_pvt_gethostbyaddr_a( #endif } /* - * ldap_pvt_init_utils() should be called before any other function. + * ldap_int_utils_init() should be called before any other function. */ -void ldap_pvt_init_utils( void ) +void ldap_int_utils_init( void ) { static int done=0; if (done) @@ -360,7 +360,7 @@ static int copy_hostent( struct hostent *res, char **buf, struct hostent * src ) static char *safe_realloc( char **buf, int len ) { char *tmpbuf; - tmpbuf = realloc( *buf, len ); + tmpbuf = LDAP_REALLOC( *buf, len ); if (tmpbuf) { *buf=tmpbuf; }