From: Wayne Davison Date: Mon, 20 Sep 2004 19:46:45 +0000 (+0000) Subject: Output the same backup-message prefix when verbose > 1 regardless of X-Git-Tag: v2.6.3pre2~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=29fe3961abc2dda69b967df7795bb0e6972cd9c4;p=thirdparty%2Frsync.git Output the same backup-message prefix when verbose > 1 regardless of the setting of --backup-dir. --- diff --git a/backup.c b/backup.c index ca433867..dcb71fa9 100644 --- a/backup.c +++ b/backup.c @@ -254,7 +254,7 @@ static int keep_backup(char *fname) free(file); if (verbose > 1) - rprintf(FINFO, "keep_backup %s -> %s\n", fname, buf); + rprintf(FINFO, "backed up %s to %s\n", fname, buf); return 1; }