added newline symbol at the end of two error messages

This commit is contained in:
solusipse
2013-09-22 21:43:09 +02:00
parent eabb2f5b97
commit 0c3e6aacd4

View File

@@ -156,8 +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 hostname");*/
printf("ERROR: Couldn't obtain client's hostname");
printf("ERROR: Couldn't obtain client's hostname\n");
data.hostname = "error";
}
else
@@ -166,7 +165,7 @@ struct client_data get_client_address(struct sockaddr_in client_address)
hostaddrp = inet_ntoa(client_address.sin_addr);
if (hostaddrp == NULL)
{
nerror("ERROR: Couldn't obtain client's address");
printf("ERROR: Couldn't obtain client's address\n");
data.ip_address = "error";
}
else