diff options
author | Christophe Jaillet <jailletc36@apache.org> | 2015-11-21 21:42:39 +0100 |
---|---|---|
committer | Christophe Jaillet <jailletc36@apache.org> | 2015-11-21 21:42:39 +0100 |
commit | f3de5dcfe6db72846da938b30ad1e5a84c0de585 (patch) | |
tree | 80ee6bf7458290a260c66f908943ba3ca3b74406 /modules/cache | |
parent | stick with underlying strcasecmp on EBCDIC builds (diff) | |
download | apache2-f3de5dcfe6db72846da938b30ad1e5a84c0de585.tar.xz apache2-f3de5dcfe6db72846da938b30ad1e5a84c0de585.zip |
Remove some useless 'return' statements.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1715567 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/cache')
-rw-r--r-- | modules/cache/mod_socache_dbm.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/modules/cache/mod_socache_dbm.c b/modules/cache/mod_socache_dbm.c index 44ff040b45..4460dffd27 100644 --- a/modules/cache/mod_socache_dbm.c +++ b/modules/cache/mod_socache_dbm.c @@ -184,8 +184,6 @@ static void socache_dbm_destroy(ap_socache_instance_t *ctx, server_rec *s) unlink(apr_pstrcat(ctx->pool, ctx->data_file, ".pag", NULL)); unlink(apr_pstrcat(ctx->pool, ctx->data_file, ".db", NULL)); unlink(ctx->data_file); - - return; } static apr_status_t socache_dbm_store(ap_socache_instance_t *ctx, @@ -510,7 +508,6 @@ static void socache_dbm_status(ap_socache_instance_t *ctx, request_rec *r, ap_rprintf(r, "CacheCurrentSize: %ld\n", size); ap_rprintf(r, "CacheAvgEntrySize: %d\n", avg); } - return; } static apr_status_t socache_dbm_iterate(ap_socache_instance_t *ctx, |