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