X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/3f0211b63a6cdc4a2cecfd2a0dffeba172c86a47..46f800e8c7021189e4655d3d4fe767911de2cf7e:/log.c diff --git a/log.c b/log.c index fc4b5833..c7007dbb 100644 --- a/log.c +++ b/log.c @@ -86,6 +86,7 @@ struct { { RERR_PARTIAL , "some files could not be transferred" }, { RERR_VANISHED , "some files vanished before they could be transferred" }, { RERR_TIMEOUT , "timeout in data send/receive" }, + { RERR_CONTIMEOUT , "timeout waiting for daemon connection" }, { RERR_CMD_FAILED , "remote shell failed" }, { RERR_CMD_KILLED , "remote shell killed" }, { RERR_CMD_RUN , "remote command could not be run" }, @@ -306,7 +307,7 @@ void rwrite(enum logcode code, const char *buf, int len, int is_utf8) switch (code) { case FERROR_XFER: got_xfer_error = 1; - /* CONTINUE */ + /* FALL THROUGH */ case FERROR: case FWARNING: f = stderr; @@ -622,7 +623,7 @@ static void log_formatted(enum logcode code, const char *format, const char *op, break; case 'i': if (iflags & ITEM_DELETED) { - n = "*deleting"; + n = "*deleting "; break; } n = c = buf2 + MAXPATHLEN - 32;