From d914b67de1a95f7ed59f4d78584d9e46cfff04cc Mon Sep 17 00:00:00 2001 From: Guillaume Cottenceau Date: Sat, 14 Sep 2002 15:57:59 +0000 Subject: http: don't add a / between the hostname and the url, apache doesn't understand //~fermigier the same way as /~fermigier --- mdk-stage1/network.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mdk-stage1') diff --git a/mdk-stage1/network.c b/mdk-stage1/network.c index 3d3107ddf..ef9dd2814 100644 --- a/mdk-stage1/network.c +++ b/mdk-stage1/network.c @@ -823,7 +823,7 @@ enum return_type http_prepare(void) return RETURN_ERROR; method_name = strdup("http"); - sprintf(location_full, "http://%s/%s", answers[0], answers[1]); + sprintf(location_full, "http://%s%s", answers[0], answers[1]); add_to_env("URLPREFIX", location_full); } while (results == RETURN_BACK); -- cgit v1.2.1