include/exclude cluestick: with -vv, print out whether files are
[rsync/rsync.git] / rsync.h
diff --git a/rsync.h b/rsync.h
index 0742d43..5f61caa 100644 (file)
--- a/rsync.h
+++ b/rsync.h
@@ -344,7 +344,6 @@ struct map_struct {
 };
 
 struct exclude_struct {
-       char *orig;
        char *pattern;
        int regular_exp;
        int fnmatch_flags;
@@ -510,4 +509,8 @@ size_t strlcpy(char *d, const char *s, size_t bufsize);
 size_t strlcat(char *d, const char *s, size_t bufsize);
 #endif
 
+#ifndef WEXITSTATUS
+#define        WEXITSTATUS(stat)       ((int)(((stat)>>8)&0xFF))
+#endif
+
 #define exit_cleanup(code) _exit_cleanup(code, __FILE__, __LINE__)