]> git.sur5r.net Git - openldap/blobdiff - libraries/libldap/util-int.c
rename ldap_pvt_init_utils() to ldap_int_utils_init() and provide
[openldap] / libraries / libldap / util-int.c
index 2316716da670f11878e4b87567d1146ed481f78e..7ee5da8b576ca50227c4756e2f6933a9c8d44c98 100644 (file)
 #      define USE_CTIME_R
 #endif
 
+#if defined(HAVE_GETHOSTBYNAME_R) && \
+    (GETHOSTBYNAME_R_NARGS > 6 || GETHOSTBYNAME_R_NARGS < 5)
+       /* Don't know how to handle this version, pretend it's not there */
+#      undef HAVE_GETHOSTBYNAME_R
+#endif
+#if defined(HAVE_GETHOSTBYADDR_R) && \
+    (GETHOSTBYADDR_R_NARGS > 8 || GETHOSTBYADDR_R_NARGS < 7)
+       /* Don't know how to handle this version, pretend it's not there */
+#      undef HAVE_GETHOSTBYADDR_R
+#endif
+
 #ifdef LDAP_R_COMPILE
 # ifndef USE_CTIME_R
        static ldap_pvt_thread_mutex_t ldap_int_ctime_mutex;
@@ -59,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
@@ -92,10 +105,6 @@ int ldap_pvt_gethostbyname_a(
 {
 #if defined( HAVE_GETHOSTBYNAME_R )
 
-# if (GETHOSTBYNAME_R_NARGS > 6) || (GETHOSTBYNAME_R_NARGS < 5)
-    Ouch! gethostbyname_r() must have either 5 or 6 args
-#endif
-
 # define NEED_SAFE_REALLOC 1   
        int r=-1;
        int buflen=BUFSTART;
@@ -105,15 +114,15 @@ int ldap_pvt_gethostbyname_a(
                        return r;
 
 #if (GETHOSTBYNAME_R_NARGS < 6)
-               r = ((*result=gethostbyname_r( name, resbuf, *buf,\
-                                              buflen, herrno_ptr ))== NULL) ?\
+               r = ((*result=gethostbyname_r( name, resbuf, *buf,
+                                              buflen, herrno_ptr ))== NULL) ?
                    -1 : 0;
 #else
                r = gethostbyname_r( name, resbuf, *buf,
                        buflen, result, herrno_ptr );
 #endif
 
-               Debug( LDAP_DEBUG_TRACE, "ldap_pvt_gethostbyname_a: host=%s, r=%d\n",\
+               Debug( LDAP_DEBUG_TRACE, "ldap_pvt_gethostbyname_a: host=%s, r=%d\n",
                       name, r, 0 );
 
 #ifdef NETDB_INTERNAL
@@ -175,10 +184,6 @@ int ldap_pvt_gethostbyaddr_a(
 {
 #if defined( HAVE_GETHOSTBYADDR_R )
 
-#if (GETHOSTBYADDR_R_NARGS > 8) || (GETHOSTBYADDR_R_NARGS < 7)
-    Ouch! gethostbyaddr_r() must have either 7 or 8 args
-#endif
-
 # undef NEED_SAFE_REALLOC
 # define NEED_SAFE_REALLOC   
        int r=-1;
@@ -190,7 +195,7 @@ int ldap_pvt_gethostbyaddr_a(
 #if (GETHOSTBYADDR_R_NARGS < 8)
                r = ((*result=gethostbyaddr_r( addr, len, type,
                                               resbuf, *buf, buflen, 
-                                              herrno_ptr )) == NULL) ?\
+                                              herrno_ptr )) == NULL) ?
                    -1 : 0;
 #else
                r = gethostbyaddr_r( addr, len, type,
@@ -244,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)