From 757e0a544545fb2d77c80ce008c70696444cb130 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Tue, 25 Jan 2005 12:02:08 +0000 Subject: [PATCH] Added DEL_NO_RECURSE and changed DEL_RECURSE to DEL_FORCE_RECURSE. --- rsync.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/rsync.h b/rsync.h index 0c04679e..9ca7d35b 100644 --- a/rsync.h +++ b/rsync.h @@ -133,8 +133,9 @@ /* For calling delete_file() */ #define DEL_DIR (1<<0) -#define DEL_RECURSE (1<<1) /* recurse even w/o --force */ -#define DEL_TERSE (1<<2) +#define DEL_NO_RECURSE (1<<1) +#define DEL_FORCE_RECURSE (1<<2) /* recurse even w/o --force */ +#define DEL_TERSE (1<<3) /* Log-message categories. FLOG is only used on the daemon side to -- 2.34.1