summaryrefslogtreecommitdiffstats
path: root/modules/cache/mod_socache_dbm.c
diff options
context:
space:
mode:
authorJoe Orton <jorton@apache.org>2008-04-08 18:04:12 +0200
committerJoe Orton <jorton@apache.org>2008-04-08 18:04:12 +0200
commitbd632a338896527e346692529e4d5056cda36500 (patch)
treee2dbaad0a9dcc771f519973116f7a117fda5517a /modules/cache/mod_socache_dbm.c
parentAdjust socache init interface to take sizing hints, and namespace tag (diff)
downloadapache2-bd632a338896527e346692529e4d5056cda36500.tar.xz
apache2-bd632a338896527e346692529e4d5056cda36500.zip
* modules/cache/mod_socache_dbm.c: Fix some dodgy formatting, thanks rpluem.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@645984 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/cache/mod_socache_dbm.c')
-rw-r--r--modules/cache/mod_socache_dbm.c17
1 files changed, 8 insertions, 9 deletions
diff --git a/modules/cache/mod_socache_dbm.c b/modules/cache/mod_socache_dbm.c
index dfc1194a59..1b71437801 100644
--- a/modules/cache/mod_socache_dbm.c
+++ b/modules/cache/mod_socache_dbm.c
@@ -160,10 +160,10 @@ static void socache_dbm_kill(ap_socache_instance_t *ctx, server_rec *s)
return;
}
-static apr_status_t socache_dbm_store(
- ap_socache_instance_t *ctx, server_rec *s,
- const unsigned char *id, unsigned int idlen,
- time_t expiry, unsigned char *ucaData, unsigned int nData)
+static apr_status_t socache_dbm_store(ap_socache_instance_t *ctx, server_rec *s,
+ const unsigned char *id, unsigned int idlen,
+ time_t expiry, unsigned char *ucaData,
+ unsigned int nData)
{
apr_dbm_t *dbm;
apr_datum_t dbmkey;
@@ -233,11 +233,10 @@ static apr_status_t socache_dbm_store(
return APR_SUCCESS;
}
-static apr_status_t socache_dbm_retrieve(
- ap_socache_instance_t *ctx, server_rec *s,
- const unsigned char *id, unsigned int idlen,
- unsigned char *dest, unsigned int *destlen,
- apr_pool_t *p)
+static apr_status_t socache_dbm_retrieve(ap_socache_instance_t *ctx, server_rec *s,
+ const unsigned char *id, unsigned int idlen,
+ unsigned char *dest, unsigned int *destlen,
+ apr_pool_t *p)
{
apr_dbm_t *dbm;
apr_datum_t dbmkey;