Decided to hold off on the potential memory savings of indexed
[rsync/rsync.git] / rsync.h
diff --git a/rsync.h b/rsync.h
index dcc0799..e6bff06 100644 (file)
--- a/rsync.h
+++ b/rsync.h
@@ -493,11 +493,6 @@ struct hlink {
        int hlindex;
 };
 
-struct id_pair {
-       uid_t uid;
-       gid_t gid;
-};
-
 #define F_DEV  link_u.idev->dev
 #define F_INODE        link_u.idev->inode
 
@@ -521,9 +516,10 @@ struct file_struct {
                struct idev *idev;
                struct hlink *links;
        } link_u;
-       struct id_pair *ids;
        time_t modtime;
        mode_t mode;
+       uid_t uid;
+       gid_t gid;
        uchar flags;    /* this item MUST remain last */
 };