mirror of
https://github.com/libretro/ppsspp.git
synced 2024-11-23 16:19:44 +00:00
http: Correct typo.
Oops, somehow deleted an important character when pushing up.
This commit is contained in:
parent
127330feec
commit
809c0f3e2c
@ -292,7 +292,7 @@ int Client::SendRequestWithData(const char *method, const char *resource, const
|
||||
|
||||
int Client::ReadResponseHeaders(Buffer *readbuf, std::vector<std::string> &responseHeaders, float *progress) {
|
||||
// Snarf all the data we can into RAM. A little unsafe but hey.
|
||||
if (dataTimeout_ >= 0.0 && fd_util::WaitUntilReady(sock(), dataTimeout_, false)) {
|
||||
if (dataTimeout_ >= 0.0 && !fd_util::WaitUntilReady(sock(), dataTimeout_, false)) {
|
||||
ELOG("HTTP headers timed out");
|
||||
return -1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user