summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJoe Orton <jorton@apache.org>2005-02-11 13:22:16 +0100
committerJoe Orton <jorton@apache.org>2005-02-11 13:22:16 +0100
commitedb46b1de9584c79abbea96243fe6fee5987f0e0 (patch)
treec17397a0d6ce34229ce5bca41e04714e11e9baf9 /include
parent* modules/cache/mod_disk_cache.c (store_body): Fix format string (diff)
downloadapache2-edb46b1de9584c79abbea96243fe6fee5987f0e0.tar.xz
apache2-edb46b1de9584c79abbea96243fe6fee5987f0e0.zip
* include/util_ldap.h (util_ldap_state_t): Fix gcc format string
warnings: use a long for connectionTimeout since the code expects a long. * modules/ldap/util_ldap.c (compare_client_certs): Make static to fix gcc missing-prototype warning. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@153390 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r--include/util_ldap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/util_ldap.h b/include/util_ldap.h
index e6c35c3436..3e678c9ff7 100644
--- a/include/util_ldap.h
+++ b/include/util_ldap.h
@@ -129,7 +129,7 @@ typedef struct util_ldap_state_t {
/* cache ald */
void *util_ldap_cache;
char *lock_file; /* filename for shm lock mutex */
- int connectionTimeout;
+ long connectionTimeout;
} util_ldap_state_t;