diff --git a/src/HttpClient.cpp b/src/HttpClient.cpp index c51ad94..c0f5c27 100644 --- a/src/HttpClient.cpp +++ b/src/HttpClient.cpp @@ -422,7 +422,7 @@ int HttpClient::responseStatusCode() { if (available()) { - c = read(); + c = HttpClient::read(); if (c != -1) { switch(iState) @@ -763,7 +763,7 @@ int HttpClient::read(uint8_t *buf, size_t size) int HttpClient::readHeader() { - char c = read(); + char c = HttpClient::read(); if (endOfHeadersReached()) {