From: Wayne Davison Date: Thu, 27 Jan 2005 21:45:32 +0000 (+0000) Subject: Added a missing newline to an error message. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/880570f2287326f4c4d3c65b1298af733a82de02 Added a missing newline to an error message. --- diff --git a/socket.c b/socket.c index 5810c48b..be0e311b 100644 --- a/socket.c +++ b/socket.c @@ -455,7 +455,7 @@ void start_accept_loop(int port, int (*fn)(int, int)) #ifdef INET6 if (errno == EADDRINUSE && i > 0) { rprintf(FINFO, - "Try using --ipv4 or --ipv6 to avoid this listen() error."); + "Try using --ipv4 or --ipv6 to avoid this listen() error.\n"); } #endif exit_cleanup(RERR_SOCKETIO);