From: Wayne Davison Date: Thu, 20 Jan 2005 23:51:52 +0000 (+0000) Subject: Changed DEL_NO_RECURSE to DEL_RECURSE. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/f5ea4b3b3944256a4d569191d3f6738690552d44 Changed DEL_NO_RECURSE to DEL_RECURSE. --- diff --git a/rsync.h b/rsync.h index 2a9918b0..ab3e8200 100644 --- a/rsync.h +++ b/rsync.h @@ -130,8 +130,8 @@ #define FNAMECMP_BACKUP 0x82 /* For calling delete_file() */ -#define DEL_DIR (1<<0) -#define DEL_NO_RECURSE (1<<1) +#define DEL_DIR (1<<0) +#define DEL_RECURSE (1<<1) /* recurse even w/o --force */ #define DEL_TERSE (1<<2)