minor fix

This commit is contained in:
solusipse
2013-09-16 15:07:31 +02:00
parent 7b48aed402
commit 8b553306f0

View File

@@ -156,7 +156,7 @@ struct client_data get_client_address(struct sockaddr_in client_address)
hostp = gethostbyaddr((const char *)&client_address.sin_addr.s_addr, sizeof(client_address.sin_addr.s_addr), AF_INET);
if (hostp == NULL)
{
nerror("ERROR: Couldn't obtain client's address");
nerror("ERROR: Couldn't obtain client's hostname");
data.hostname = "error";
}
else