From 21f7e13fa1c892dbe9e55f21b8cc44517c41297c Mon Sep 17 00:00:00 2001 From: fuchsi Date: Sun, 16 Dec 2007 00:33:32 +0000 Subject: [PATCH] fix stupid tiny bug introduced in rev 4276 that broke request URL parsing almost completely git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4277 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/http/httpHeader.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/de/anomic/http/httpHeader.java b/source/de/anomic/http/httpHeader.java index 031f678c8..57034b583 100644 --- a/source/de/anomic/http/httpHeader.java +++ b/source/de/anomic/http/httpHeader.java @@ -611,8 +611,8 @@ public final class httpHeader extends TreeMap implements Map { prop.setProperty(CONNECTION_PROP_HOST, virtualHost); path = "/" + args; } - prop.setProperty(CONNECTION_PROP_PATH, path); } + prop.setProperty(CONNECTION_PROP_PATH, path); // find out file extension (we already stripped ?-parameters from args) String ext = ""; // default when no file extension