From edad3c6ac0bf754458f386b2c540276b83e83020 Mon Sep 17 00:00:00 2001 From: Fredrik Tolf Date: Wed, 17 Dec 2008 04:08:47 +0100 Subject: [PATCH] Make htparser strip the param string from the rest string. --- src/htparser.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/htparser.c b/src/htparser.c index 184e7b9..88c8e6d 100644 --- a/src/htparser.c +++ b/src/htparser.c @@ -339,7 +339,7 @@ static void serve(struct muth *muth, va_list args) vavar(struct sockaddr_storage, name); int cfd; char old; - char *hd; + char *hd, *p; struct charbuf inbuf, outbuf; struct hthead *req, *resp; off_t dlen, sent; @@ -369,10 +369,13 @@ static void serve(struct muth *muth, va_list args) goto out; inbuf.b[headoff] = old; bufeat(inbuf, headoff); - /* We strip off the leading slash from the rest string, so - * that multiplexers can parse coherently. */ + /* We strip off the leading slash and any param string from + * the rest string, so that multiplexers can parse + * coherently. */ if(req->rest[0] == '/') replrest(req, req->rest + 1); + if((p = strchr(req->rest, '?')) != NULL) + *p = 0; /* * Add metainformation and then send the request to the root -- 2.11.0