From: André Malo Date: Sun, 17 Oct 2004 15:18:56 +0000 (+0000) Subject: more style X-Git-Tag: 2.1.1~119 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c3e84f509a04cfc7e220bdd606498cb466fb55b1;p=thirdparty%2Fapache%2Fhttpd.git more style git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@105500 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/util_filter.h b/include/util_filter.h index 2532f8d710c..134c803a8c0 100644 --- a/include/util_filter.h +++ b/include/util_filter.h @@ -249,7 +249,7 @@ struct ap_filter_rec_t { const char* value; /** Providers for this filter */ - ap_filter_provider_t* providers; + ap_filter_provider_t *providers; /** Trace level for this filter */ int debug; @@ -284,16 +284,16 @@ struct ap_filter_provider_t { /** The dispatch match itself - union member depends on match_type */ union { - const char* c; - regex_t* r; + const char *c; + regex_t *r; int i; } match; /** The filter that implements this provider */ - ap_filter_rec_t* frec; + ap_filter_rec_t *frec; /** The next provider in the list */ - ap_filter_provider_t* next; + ap_filter_provider_t *next; }; /**