From a31538b2ba46ac3b4e75d920fe0e15e3173c5476 Mon Sep 17 00:00:00 2001 From: Guenter Knauf Date: Tue, 1 Jan 2008 17:23:16 +0000 Subject: [PATCH] Modified default refresh value to 10 secs so that its possible to correct a typo. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@607873 13f79535-47bb-0310-9956-ffa450edef68 --- modules/generators/mod_status.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/generators/mod_status.c b/modules/generators/mod_status.c index 38859e3815..d2406a8b4f 100644 --- a/modules/generators/mod_status.c +++ b/modules/generators/mod_status.c @@ -306,7 +306,7 @@ static int status_handler(request_rec *r) } apr_table_set(r->headers_out, status_options[i].hdr_out_str, - apr_ltoa(r->pool, t < 1 ? 1 : t)); + apr_ltoa(r->pool, t < 1 ? 10 : t)); break; } case STAT_OPT_NOTABLE: -- 2.50.1