Made the flags in the file_struct a little smaller.
[rsync/rsync.git] / rsync.h
diff --git a/rsync.h b/rsync.h
index 73ba1d9..dd3aa98 100644 (file)
--- a/rsync.h
+++ b/rsync.h
@@ -70,7 +70,7 @@
  * unlikely to begin by sending a byte between MIN_PROTOCL_VERSION and
  * MAX_PROTOCOL_VERSION. */
 
-#define MIN_PROTOCOL_VERSION 17
+#define MIN_PROTOCOL_VERSION 19
 #define OLD_PROTOCOL_VERSION 20
 #define MAX_PROTOCOL_VERSION 40
 
@@ -365,7 +365,6 @@ enum logcode {FNONE=0, FERROR=1, FINFO=2, FLOG=3 };
 #define GID_NONE (gid_t) -1
 
 struct file_struct {
-       unsigned flags;
        time_t modtime;
        OFF_T length;
        mode_t mode;
@@ -383,6 +382,7 @@ struct file_struct {
        char *basedir;
        char *link;
        char *sum;
+       unsigned short flags;
 };