X-Git-Url: http://www.dolda2000.com/gitweb/?p=ashd.git;a=blobdiff_plain;f=src%2Fcallscgi.c;h=84b63c551b72af9843a16064241ae540f06d6f99;hp=85cc50aa034eac3a89d6921b423dc8f1793a6e53;hb=09c82f9c7bc563c081425141853e6ff8e402e358;hpb=46db3a23a845ee5e8e95f4149632dda24e0f8003 diff --git a/src/callscgi.c b/src/callscgi.c index 85cc50a..84b63c5 100644 --- a/src/callscgi.c +++ b/src/callscgi.c @@ -403,7 +403,7 @@ static char *absolutify(char *file) static void mkcgienv(struct hthead *req, struct charbuf *dst) { int i; - char *url, *qp, *h, *p; + char *url, *unq, *qp, *h, *p; bufaddenv(dst, "SERVER_SOFTWARE", "ashd/%s", VERSION); bufaddenv(dst, "GATEWAY_INTERFACE", "CGI/1.1"); @@ -411,7 +411,12 @@ static void mkcgienv(struct hthead *req, struct charbuf *dst) bufaddenv(dst, "SERVER_PROTOCOL", "%s", req->ver); bufaddenv(dst, "REQUEST_METHOD", "%s", req->method); bufaddenv(dst, "REQUEST_URI", "%s", req->url); - bufaddenv(dst, "PATH_INFO", req->rest); + if((unq = unquoteurl(req->rest)) != NULL) { + bufaddenv(dst, "PATH_INFO", unq); + free(unq); + } else { + bufaddenv(dst, "PATH_INFO", req->rest); + } url = sstrdup(req->url); if((qp = strchr(url, '?')) != NULL) *(qp++) = 0;