Fix string comparison
This commit is contained in:
@@ -165,7 +165,7 @@ void ap_client_check(){
|
|||||||
// you're starting a new line
|
// you're starting a new line
|
||||||
currentLineIsBlank = true;
|
currentLineIsBlank = true;
|
||||||
|
|
||||||
if (strstr(linebuf,"GET /?") > 0)
|
if (strstr(linebuf,"GET /?") != NULL)
|
||||||
{
|
{
|
||||||
String line = String(linebuf);
|
String line = String(linebuf);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user