You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by mi...@apache.org on 2010/02/15 22:38:09 UTC

svn commit: r910340 - /httpd/httpd/trunk/modules/filters/mod_reflector.c

Author: minfrin
Date: Mon Feb 15 21:38:09 2010
New Revision: 910340

URL: http://svn.apache.org/viewvc?rev=910340&view=rev
Log:
Add missing headers, remove unused variable.

Modified:
    httpd/httpd/trunk/modules/filters/mod_reflector.c

Modified: httpd/httpd/trunk/modules/filters/mod_reflector.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/filters/mod_reflector.c?rev=910340&r1=910339&r2=910340&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/filters/mod_reflector.c (original)
+++ httpd/httpd/trunk/modules/filters/mod_reflector.c Mon Feb 15 21:38:09 2010
@@ -13,14 +13,16 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-
+#include "apr_strings.h"
 #include "apr_tables.h"
 
 #include "httpd.h"
 #include "http_config.h"
 #include "http_core.h"
 #include "http_log.h"
+#include "http_protocol.h"
 #include "http_request.h"
+#include "mod_core.h"
 
 module AP_MODULE_DECLARE_DATA reflector_module;
 
@@ -44,7 +46,6 @@
 static int reflector_handler(request_rec * r)
 {
     apr_bucket_brigade *bbin, *bbout;
-    apr_bucket *e;
     reflector_cfg *conf;
     apr_status_t status;