From: Guenter Knauf Date: Tue, 1 Jan 2008 17:23:16 +0000 (+0000) Subject: Modified default refresh value to 10 secs so that its possible to correct a typo. X-Git-Tag: 2.3.0~1067 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a31538b2ba46ac3b4e75d920fe0e15e3173c5476;p=apache 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 --- 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: