Skip to content

Instantly share code, notes, and snippets.

@hirose31
Created February 16, 2009 16:50
Show Gist options
  • Save hirose31/65247 to your computer and use it in GitHub Desktop.
Save hirose31/65247 to your computer and use it in GitHub Desktop.
From 2791aff08cfb721c5e54837fa31ead4fb983619e Mon Sep 17 00:00:00 2001
From: HIROSE Masaaki <hirose31@gmail.com>
Date: Tue, 17 Feb 2009 01:47:48 +0900
Subject: [PATCH] =?utf-8?q?=C9=E1=C4=CC=A4=CEPOST=A5=EA=A5=AF=A5=A8=A5=B9=A5=C8=A4=CE=BE=EC=B9=E7=A4=CF=B8=E5=C2=B3=A4=CE=BD=E8=CD=FD=A4=CB=A5=D1=A5=B9=A4=B9=A4=EB=A4=E8=A4=A6=A4=CB=A4=B7=A4=BF=A1=A3?=
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit
---
mod_postfile.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/mod_postfile.c b/mod_postfile.c
index 293bc89..54ea7c3 100644
--- a/mod_postfile.c
+++ b/mod_postfile.c
@@ -156,7 +156,7 @@ handler_t mod_postfile_uri_clean(server *srv, connection *con, void *p_d) {
mod_postfile_patch_connection(srv, con, p);
- if (p->conf.dir->used == 0) return;
+ if (p->conf.dir->used == 0) return HANDLER_GO_ON;
return HANDLER_GO_ON;
}
@@ -167,7 +167,7 @@ handler_t mod_postfile_read_post(server *srv, connection *con, void *p_d, char *
mod_postfile_patch_connection(srv, con, p);
- if (p->conf.dir->used == 0) return;
+ if (p->conf.dir->used == 0) return HANDLER_GO_ON;
if (con->plugin_ctx[p->id]) {
hctx = con->plugin_ctx[p->id];
--
1.5.4.3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment