--- vfile/vfff/http.c.orig 2007-07-16 22:05:47.000000000 +0200 +++ vfile/vfff/http.c 2007-07-16 22:06:10.000000000 +0200 @@ -123,16 +123,8 @@ static char *make_req_line(char *buf, int size, const char *method, const char *uri) { - char *escaped = NULL; - - if ((escaped = vfff_uri_escape(uri))) - uri = escaped; - n_snprintf(buf, size, "%s %s HTTP/1.1\r\n", method, uri); - if (escaped) - free(escaped); - return buf; }