added newline symbol at the end of two error messages - fiche - A pastebin adjusted for gopher use
 (HTM) git clone git://vernunftzentrum.de/fiche.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) LICENSE
       ---
 (DIR) commit 0c3e6aacd439f00940f12f4dd83c363eacea93ca
 (DIR) parent eabb2f5b97b56cb29dfee1096d906be25af54cad
 (HTM) Author: solusipse <solus1ps3@gmail.com>
       Date:   Sun, 22 Sep 2013 21:43:09 +0200
       
       added newline symbol at the end of two error messages
       
       Diffstat:
         fiche.c                             |       5 ++---
       
       1 file changed, 2 insertions(+), 3 deletions(-)
       ---
 (DIR) diff --git 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