From 0040c4bcbc241107a77b9efacf8c6996fb2e2b3b Mon Sep 17 00:00:00 2001 From: sobomax Date: Wed, 7 Nov 2001 20:26:37 +0000 Subject: Make substitution in PUT and HEAD methods work. Submitted by: Alexey Khlyamkov --- www/squirm/files/patch-ac | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) (limited to 'www/squirm/files') diff --git a/www/squirm/files/patch-ac b/www/squirm/files/patch-ac index 74c751a..b30d9ea 100644 --- a/www/squirm/files/patch-ac +++ b/www/squirm/files/patch-ac @@ -1,5 +1,8 @@ ---- ../squirm-1.23.orig/config.c Fri Mar 31 08:08:04 2000 -+++ config.c Wed Jun 7 10:27:39 2000 + +$FreeBSD$ + +--- config.c.orig Fri Mar 31 08:08:04 2000 ++++ config.c Wed Nov 7 22:23:27 2001 @@ -277,7 +277,7 @@ return 0; } @@ -9,3 +12,18 @@ if (fq_pattern_filename == NULL) { log(LOG_ERROR, "couldn't allocate memory in parse_squirm_conf()\n"); dodo_mode = 1; +@@ -304,11 +304,11 @@ + } + else if (strncasecmp(tmp1,"post", min(strlen("post"), strlen(tmp1))) == 0) { + methods |= POST; +- tmp1 += strlen("get"); ++ tmp1 += strlen("post"); + } + else if (strncasecmp(tmp1, "head", min(strlen("head"), strlen(tmp1))) == 0) { +- methods |= GET; +- tmp1 += strlen("get"); ++ methods |= HEAD; ++ tmp1 += strlen("head"); + } + else if (strncasecmp(tmp1, "all", min(strlen("all"), strlen(tmp1))) == 0) { + methods |= ALL; -- cgit v1.1