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-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/29fe3961abc2dda69b967df7795bb0e6972cd9c4 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; }