]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
mod_ldap: Fix format strings to use %APR_PID_T_FMT instead of %d.
authorGraham Leggett <minfrin@apache.org>
Sat, 23 Oct 2004 13:47:05 +0000 (13:47 +0000)
committerGraham Leggett <minfrin@apache.org>
Sat, 23 Oct 2004 13:47:05 +0000 (13:47 +0000)
PR:
Obtained from:
Submitted by: Jeff Trawick
Reviewed by: minfrin, pquerna, bnicholes

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/APACHE_2_0_BRANCH@105561 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
STATUS
modules/experimental/util_ldap.c

diff --git a/CHANGES b/CHANGES
index 299f2622430f28005a73006f415d0ac4cdcc07da..16476c41d4b6da2c3c6e23794f3ec1bfb111f914 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,8 @@
 Changes with Apache 2.0.53
 
+  *) mod_ldap: Fix format strings to use %APR_PID_T_FMT instead of %d.
+     [Jeff Trawick]
   *) mod_cache: CacheDisable will only disable the URLs it was meant to
      disable, not all caching. PR 31128.
      [Edward Rudd <eddie omegaware.com>, Paul Querna]
diff --git a/STATUS b/STATUS
index f127b6a31037e496ef1932c9e561b4d680544d91..ad81d6f1f6ab50e6889706a1430238a9d7b4c386 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -1,5 +1,5 @@
 APACHE 2.0 STATUS:                                              -*-text-*-
-Last modified at [$Date: 2004/10/23 13:40:10 $]
+Last modified at [$Date: 2004/10/23 13:47:05 $]
 
 Release:
 
@@ -75,10 +75,6 @@ PATCHES TO BACKPORT FROM 2.1
   [ please place file names and revisions from HEAD here, so it is easy to
     identify exactly what the proposed changes are! ]
 
-    *) mod_ldap: Fix format strings to use %APR_PID_T_FMT instead of %d.
-         modules/ldap/util_ldap.c: 1.16
-       +1: minfrin, pquerna, bnicholes
-
     *) mod_ssl: Fix and prevent an SSLCipherSuite bypass by resuming a
        session during a renegotiation.
        http://cvs.apache.org/viewcvs.cgi/httpd-2.0/modules/ssl/ssl_engine_kernel.c?r1=1.110&r2=1.111
index d7fb0556cdb37b2246ea7e375d3fb17669434c1e..f942d147ca430108783e2f35c1db920b3c60a259 100644 (file)
@@ -1426,13 +1426,17 @@ static void util_ldap_child_init(apr_pool_t *p, server_rec *s)
     sts = apr_global_mutex_child_init(&st->util_ldap_cache_lock, st->lock_file, p);
     if (sts != APR_SUCCESS) {
         ap_log_error(APLOG_MARK, APLOG_CRIT, sts, s,
-                     "Failed to initialise global mutex %s in child process %d.",
+                     "Failed to initialise global mutex %s in child process %"
+                     APR_PID_T_FMT
+                     ".",
                      st->lock_file, getpid());
         return;
     }
     else {
         ap_log_error(APLOG_MARK, APLOG_DEBUG|APLOG_NOERRNO, 0, s, 
-                     "Initialisation of global mutex %s in child process %d successful.",
+                     "Initialisation of global mutex %s in child process %"
+                     APR_PID_T_FMT
+                     " successful.",
                      st->lock_file, getpid());
     }
 }