Skip to content
Snippets Groups Projects
Commit 8ddbf6ac authored by rswindell's avatar rswindell
Browse files

Fixed bug in check_request in last commit.

parent e2008a68
No related branches found
No related tags found
No related merge requests found
......@@ -969,7 +969,7 @@ static BOOL check_request(http_session_t * session)
send_error("404 Not Found",session);
return(FALSE);
}
if(!strcmp(path,session->req.request)) {
if(strcmp(path,session->req.request)) {
session->req.send_location=TRUE;
SAFECOPY(session->req.request,path);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment