diff --git a/fiche.c b/fiche.c index 3619a50..a42d585 100755 --- a/fiche.c +++ b/fiche.c @@ -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