]> granicus.if.org Git - apache/commitdiff
* modules/ssl/ssl_private.h: Specify extern storage for
authorJoe Orton <jorton@apache.org>
Mon, 25 Feb 2008 10:36:25 +0000 (10:36 +0000)
committerJoe Orton <jorton@apache.org>
Mon, 25 Feb 2008 10:36:25 +0000 (10:36 +0000)
modssl_sesscache_provider objects.

Found by: rpluem

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

modules/ssl/ssl_private.h

index 8f85adfeb78c88bb938254ebacf37c8b1d9d0b6f..c913075647d68fc615aab4e92e3ccbd471621636 100644 (file)
@@ -627,15 +627,15 @@ SSL_SESSION *ssl_scache_retrieve(server_rec *, UCHAR *, int, apr_pool_t *);
 void         ssl_scache_remove(server_rec *, UCHAR *, int,
                                apr_pool_t *);
 
-const modssl_sesscache_provider modssl_sesscache_shmcb;
-const modssl_sesscache_provider modssl_sesscache_dbm;
+extern const modssl_sesscache_provider modssl_sesscache_shmcb;
+extern const modssl_sesscache_provider modssl_sesscache_dbm;
 
 #ifdef HAVE_DISTCACHE
-const modssl_sesscache_provider modssl_sesscache_dc;
+extern const modssl_sesscache_provider modssl_sesscache_dc;
 #endif
 
 #ifdef HAVE_SSL_CACHE_MEMCACHE
-const modssl_sesscache_provider modssl_sesscache_mc;
+extern const modssl_sesscache_provider modssl_sesscache_mc;
 #endif
 
 /** Proxy Support */