From: Wayne Davison Date: Wed, 19 Jan 2005 20:11:00 +0000 (+0000) Subject: Define the new DEL_* flags. X-Git-Tag: v2.6.4pre1~398 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eb1accaa9197bb157870601b208c8f35778f3c32;p=thirdparty%2Frsync.git Define the new DEL_* flags. --- diff --git a/rsync.h b/rsync.h index c06ffacd..2db12798 100644 --- a/rsync.h +++ b/rsync.h @@ -129,6 +129,11 @@ #define FNAMECMP_PARTIAL_DIR 0x81 #define FNAMECMP_BACKUP 0x82 +/* For calling delete_file() */ +#define DEL_DIR (1<<0) +#define DEL_NO_RECURSE (1<<1) +#define DEL_TERSE (1<<2) + /* Log-message categories. FLOG is only used on the daemon side to * output messages to the log file. */