summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2011-06-18 12:44:26 -0700
committerWayne Davison <wayned@samba.org>2011-06-18 12:44:26 -0700
commit5bfe00688206cde3cbc603e8d47b28788a19ca3a (patch)
tree50cab8dbea05e89b1c240ea6016ca9409780a495 /main.c
parent852585b1fced8d0df35b14c17f26c4aac633313b (diff)
downloadrsync-5bfe00688206cde3cbc603e8d47b28788a19ca3a.tar.gz
Make daemon-exclude errors more error-like.
Fixes bug 7765.
Diffstat (limited to 'main.c')
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index 16b283cd..5a06f177 100644
--- a/main.c
+++ b/main.c
@@ -594,7 +594,7 @@ static char *get_local_name(struct file_list *flist, char *dest_path)
if ((*dest_path != '.' || dest_path[1] != '\0')
&& (check_filter(&daemon_filter_list, FLOG, dest_path, 0) < 0
|| check_filter(&daemon_filter_list, FLOG, dest_path, 1) < 0)) {
- rprintf(FERROR, "skipping daemon-excluded destination \"%s\"\n",
+ rprintf(FERROR, "ERROR: daemon has excluded destination \"%s\"\n",
dest_path);
exit_cleanup(RERR_FILESELECT);
}