Merge branch 'master' of bitbucket.org:LuckyLaszlo/webserv

This commit is contained in:
Eric LAZO
2022-08-16 00:26:55 +02:00
19 changed files with 337 additions and 200 deletions

View File

@@ -55,7 +55,7 @@ void Webserv::_get_file(Client *client, const std::string &path)
std::cout << "_get_file()\n";
client->status = ::eval_file_mode(path, R_OK);
client->status = ::eval_file_access(path, R_OK);
if (client->status)
return;