From f1d5ba40056415aaecf94fed52860d95da735544 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Tue, 1 Feb 2005 09:46:42 +0000 Subject: [PATCH] Set am_sender to -1 until the end of the option parsing. This lets who_am_i() output better values for the command-line --filter/--include/--exclude options. --- options.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/options.c b/options.c index 944bb249..8eb38110 100644 --- a/options.c +++ b/options.c @@ -72,7 +72,7 @@ int numeric_ids = 0; int force_delete = 0; int io_timeout = 0; int am_server = 0; -int am_sender = 0; +int am_sender = -1; int am_generator = 0; char *files_from = NULL; int filesfrom_fd = -1; @@ -825,6 +825,9 @@ int parse_arguments(int *argc, const char ***argv, int frommain) } } + if (am_sender < 0) + am_sender = 0; + #if !SUPPORT_LINKS if (preserve_links && !am_sender) { snprintf(err_buf, sizeof err_buf, -- 2.34.1