summaryrefslogtreecommitdiffstats
path: root/modules/debugging
diff options
context:
space:
mode:
authorGraham Leggett <minfrin@apache.org>2011-12-17 18:57:27 +0100
committerGraham Leggett <minfrin@apache.org>2011-12-17 18:57:27 +0100
commit8ef69a4da9dabb72fb878e077d38e13db6747687 (patch)
tree944a82b63aa28573dbbdf17dfa474172aed172d6 /modules/debugging
parentFix the test for APR_HAVE_SYS_SYSLIMITS_H. (diff)
downloadapache2-8ef69a4da9dabb72fb878e077d38e13db6747687.tar.xz
apache2-8ef69a4da9dabb72fb878e077d38e13db6747687.zip
Remove unused variable.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1215538 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/debugging')
-rw-r--r--modules/debugging/mod_firehose.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/modules/debugging/mod_firehose.c b/modules/debugging/mod_firehose.c
index 33450ddb57..f35576011b 100644
--- a/modules/debugging/mod_firehose.c
+++ b/modules/debugging/mod_firehose.c
@@ -342,7 +342,6 @@ static int firehose_output_filter(ap_filter_t *f, apr_bucket_brigade *bb)
*/
static int firehose_create_request(request_rec *r)
{
- firehose_conf_t *conf;
firehose_ctx_t *ctx;
apr_uuid_t uuid;
int set = 0;
@@ -352,9 +351,6 @@ static int firehose_create_request(request_rec *r)
return DECLINED;
}
- conf = ap_get_module_config(r->connection->base_server->module_config,
- &firehose_module);
-
f = r->connection->input_filters;
while (f) {
if (f->frec->filter_func.in_func == &firehose_input_filter) {