You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ji...@apache.org on 2005/08/31 16:23:35 UTC

svn commit: r265049 - /httpd/httpd/trunk/modules/ldap/util_ldap.c

Author: jim
Date: Wed Aug 31 07:23:33 2005
New Revision: 265049

URL: http://svn.apache.org/viewcvs?rev=265049&view=rev
Log:
Consistantly use APR_PID_T_FMT for getpid value

Modified:
    httpd/httpd/trunk/modules/ldap/util_ldap.c

Modified: httpd/httpd/trunk/modules/ldap/util_ldap.c
URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/modules/ldap/util_ldap.c?rev=265049&r1=265048&r2=265049&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/ldap/util_ldap.c (original)
+++ httpd/httpd/trunk/modules/ldap/util_ldap.c Wed Aug 31 07:23:33 2005
@@ -1337,7 +1337,7 @@
     st->search_cache_ttl = atol(ttl) * 1000000;
 
     ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, cmd->server, 
-                 "[%d] ldap cache: Setting cache TTL to %ld microseconds.",
+                 "[%" APR_PID_T_FMT "] ldap cache: Setting cache TTL to %ld microseconds.",
                  getpid(), st->search_cache_ttl);
 
     return NULL;
@@ -1357,7 +1357,7 @@
     }
 
     ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, cmd->server, 
-                 "[%d] ldap cache: Setting search cache size to %ld entries.",
+                 "[%" APR_PID_T_FMT "] ldap cache: Setting search cache size to %ld entries.",
                  getpid(), st->search_cache_size);
 
     return NULL;
@@ -1373,7 +1373,7 @@
     st->compare_cache_ttl = atol(ttl) * 1000000;
 
     ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, cmd->server, 
-                 "[%d] ldap cache: Setting operation cache TTL to %ld microseconds.", 
+                 "[%" APR_PID_T_FMT "] ldap cache: Setting operation cache TTL to %ld microseconds.", 
                  getpid(), st->compare_cache_ttl);
 
     return NULL;
@@ -1392,7 +1392,7 @@
     }
 
     ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, cmd->server, 
-                 "[%d] ldap cache: Setting operation cache size to %ld "
+                 "[%" APR_PID_T_FMT "] ldap cache: Setting operation cache size to %ld "
                  "entries.", getpid(), st->compare_cache_size);
 
     return NULL;
@@ -1709,7 +1709,7 @@
     st->connectionTimeout = atol(ttl);
 
     ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, cmd->server, 
-                 "[%d] ldap connection: Setting connection timeout to "
+                 "[%" APR_PID_T_FMT "] ldap connection: Setting connection timeout to "
                  "%ld seconds.", getpid(), st->connectionTimeout);
 #else
     ap_log_error(APLOG_MARK, APLOG_NOTICE, 0, cmd->server,