]> granicus.if.org Git - apache/commitdiff
* Don't typedef twice (in .c and .h file).
authorRuediger Pluem <rpluem@apache.org>
Thu, 26 Jan 2012 10:03:36 +0000 (10:03 +0000)
committerRuediger Pluem <rpluem@apache.org>
Thu, 26 Jan 2012 10:03:36 +0000 (10:03 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1236122 13f79535-47bb-0310-9956-ffa450edef68

server/core_filters.c

index 275ff427776cd5ff54ee7649af9ad2bc0ee60dc1..d8ff5773dc7c5b86a4457d5937a87e39dab33f7c 100644 (file)
@@ -78,17 +78,17 @@ do { \
 #undef APLOG_MODULE_INDEX
 #define APLOG_MODULE_INDEX AP_CORE_MODULE_INDEX
 
-typedef struct core_output_filter_ctx {
+struct core_output_filter_ctx {
     apr_bucket_brigade *buffered_bb;
     apr_bucket_brigade *tmp_flush_bb;
     apr_pool_t *deferred_write_pool;
     apr_size_t bytes_written;
-} core_output_filter_ctx_t;
+};
 
-typedef struct core_filter_ctx {
+struct core_filter_ctx {
     apr_bucket_brigade *b;
     apr_bucket_brigade *tmpbb;
-} core_ctx_t;
+};
 
 
 AP_DECLARE(core_ctx_t *) ap_create_core_ctx(conn_rec *c)