]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
more style
authorAndré Malo <nd@apache.org>
Sun, 17 Oct 2004 15:18:56 +0000 (15:18 +0000)
committerAndré Malo <nd@apache.org>
Sun, 17 Oct 2004 15:18:56 +0000 (15:18 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@105500 13f79535-47bb-0310-9956-ffa450edef68

include/util_filter.h

index 2532f8d710cbc20a5dcf70490f8a22c8f2d9fb0f..134c803a8c030345970fa4d71c645853b62f6ed6 100644 (file)
@@ -249,7 +249,7 @@ struct ap_filter_rec_t {
     const char* value;
 
     /** Providers for this filter */
-    ap_filter_provider_tproviders;
+    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 charc;
-        regex_tr;
+        const char *c;
+        regex_t *r;
         int i;
     } match;
 
     /** The filter that implements this provider */
-    ap_filter_rec_tfrec;
+    ap_filter_rec_t *frec;
 
     /** The next provider in the list */
-    ap_filter_provider_tnext;
+    ap_filter_provider_t *next;
 };
 
 /**