aboutsummaryrefslogtreecommitdiffstats
path: root/socket.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2005-01-27 21:45:32 +0000
committerWayne Davison <wayned@samba.org>2005-01-27 21:45:32 +0000
commit880570f2287326f4c4d3c65b1298af733a82de02 (patch)
tree33cf5184b1486cd13d3c7794979dce5ed3c67f1e /socket.c
parent72a90c750a01ce51a19a80b8b414bb44a8380865 (diff)
downloadandroid_external_rsync-880570f2287326f4c4d3c65b1298af733a82de02.tar.gz
android_external_rsync-880570f2287326f4c4d3c65b1298af733a82de02.tar.bz2
android_external_rsync-880570f2287326f4c4d3c65b1298af733a82de02.zip
Added a missing newline to an error message.
Diffstat (limited to 'socket.c')
-rw-r--r--socket.c2
1 files changed, 1 insertions, 1 deletions
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);