Commit c11b8806 authored by Martin Pool's avatar Martin Pool

Fix missing parameter in log call.

parent 647c5433
......@@ -597,7 +597,7 @@ char *client_name(int fd)
if (getpeername(fd, (struct sockaddr *)&ss, &length)) {
/* FIXME: Can we really not continue? */
rprintf(FERROR, RSYNC_NAME ": getpeername on fd%d failed: %s\n",
strerror(errno));
fd, strerror(errno));
exit_cleanup(RERR_SOCKETIO);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment