rsync can disable specific messages on request.
--- a/generator.c
+++ b/generator.c
@@ -1651,9 +1651,11 @@
}
if (!S_ISREG(file->mode)) {
- if (solo_file)
- fname = f_name(file, NULL);
- rprintf(FINFO, "skipping non-regular file \"%s\"\n", fname);
+ if (INFO_GTE(SKIP, 1)) {
+ if (solo_file)
+ fname = f_name(file, NULL);
+ rprintf(FINFO, "skipping non-regular file \"%s\"\n", fname);
+ }
goto cleanup;
}
Bastian
Hello Bastian, please give some more context to your ticket. Is this a bug fix? What is the bug? Is it a new feature? Describe the new behavior. Why it this feature useful and relevant for other users? Finally, in both cases, I suggest to contribute this to the upstream project instead to Debian. Regards, Christian Buhtz