summaryrefslogtreecommitdiffstats
path: root/patches/rsync-3.0.0pre7/generic/03.diff
blob: 10449e3901a6b61fb184f9eb38494c15e61e23c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
From: Wayne Davison <wayned@samba.org>
Date: Mon, 17 Dec 2007 01:51:36 +0000 (-0800)
Subject: Fixed a FALL THROUGH comment.
X-Git-Url: http://git.samba.org/?p=rsync.git;a=commitdiff_plain;h=9468cf796daf9824070acea5fa0ec0f34f393d25

Fixed a FALL THROUGH comment.
---

diff --git a/log.c b/log.c
index 146c082..e06cc7d 100644
--- a/log.c
+++ b/log.c
@@ -307,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;