]> granicus.if.org Git - apache/commitdiff
Add missing headers, remove unused variable.
authorGraham Leggett <minfrin@apache.org>
Mon, 15 Feb 2010 21:38:09 +0000 (21:38 +0000)
committerGraham Leggett <minfrin@apache.org>
Mon, 15 Feb 2010 21:38:09 +0000 (21:38 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@910340 13f79535-47bb-0310-9956-ffa450edef68

modules/filters/mod_reflector.c

index 7fe851b4022f285954fa784c509b1279b6a65f3a..e6840f3586933d40f0d9b719054175263e25e39a 100644 (file)
  * 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 header_do(void *dummy, const char *key, const char *value)
 static int reflector_handler(request_rec * r)
 {
     apr_bucket_brigade *bbin, *bbout;
-    apr_bucket *e;
     reflector_cfg *conf;
     apr_status_t status;