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
Branches
Tags
No related merge requests found
...@@ -969,7 +969,7 @@ static BOOL check_request(http_session_t * session) ...@@ -969,7 +969,7 @@ static BOOL check_request(http_session_t * session)
send_error("404 Not Found",session); send_error("404 Not Found",session);
return(FALSE); return(FALSE);
} }
if(!strcmp(path,session->req.request)) { if(strcmp(path,session->req.request)) {
session->req.send_location=TRUE; session->req.send_location=TRUE;
SAFECOPY(session->req.request,path); SAFECOPY(session->req.request,path);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment