Merge pull request #373 from pi-hole/fix/client-name-new-flag

Don't forget to reset "new" flag on client struct when name is resolved
This commit is contained in:
Mark Drobnak
2018-09-03 10:57:15 -04:00
committed by GitHub
+1
View File
@@ -89,6 +89,7 @@ void reresolveHostnames(void)
// Store client hostname
clients[clientID].name = strdup(hostname);
clients[clientID].new = false;
}
free(hostname);
}