From 5d935dce63ae975db0efc23e3d94c32b17424444 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Tue, 24 Jul 2007 04:09:46 +0000 Subject: [PATCH] If --no-ir is specified, pass it to the server. --- options.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/options.c b/options.c index 5adcf7bc..4331fc65 100644 --- a/options.c +++ b/options.c @@ -1887,6 +1887,9 @@ void server_options(char **args,int *argc) if (numeric_ids) args[ac++] = "--numeric-ids"; + if (!allow_inc_recurse) + args[ac++] = "--no-ir"; + if (am_sender) { if (ignore_existing) args[ac++] = "--ignore-existing"; -- 2.34.1