From: Wayne Davison Date: Wed, 31 Mar 2004 17:02:22 +0000 (+0000) Subject: Don't complain about a null --suffix if we're the server/sender (since X-Git-Tag: v2.6.1pre2~62 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8dcf93356e23556b1441d4df195c11aeaa35ab6e;p=thirdparty%2Frsync.git Don't complain about a null --suffix if we're the server/sender (since we might not have received the --backup-dir path from the client). --- diff --git a/options.c b/options.c index 1ee4ee75..67349ac2 100644 --- a/options.c +++ b/options.c @@ -707,9 +707,9 @@ int parse_arguments(int *argc, const char ***argv, int frommain) backup_dir_buf[backup_dir_len++] = '/'; backup_dir_buf[backup_dir_len] = '\0'; } - if (verbose > 1) + if (verbose > 1 && !am_sender) rprintf(FINFO, "backup_dir is %s\n", backup_dir_buf); - } else if (!backup_suffix_len) { + } else if (!backup_suffix_len && (!am_server || !am_sender)) { rprintf(FERROR, "--suffix cannot be a null string without --backup-dir\n"); exit_cleanup(RERR_SYNTAX);