From 44d7d045c7880eba19ab04e80eeb064b0649e4b7 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Mon, 7 Sep 2009 14:22:59 -0700 Subject: [PATCH] Improve the "--delete does not work without -r or -d" message. --- options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/options.c b/options.c index ee981e37..3c72eaed 100644 --- a/options.c +++ b/options.c @@ -1930,7 +1930,7 @@ int parse_arguments(int *argc_p, const char ***argv_p) } if (!xfer_dirs && delete_mode) { snprintf(err_buf, sizeof err_buf, - "--delete does not work without -r or -d.\n"); + "--delete does not work without --recursive (-r) or --dirs (-d).\n"); return 0; } -- 2.34.1