* xdirentry.h: Comment out magic field everywhere.

This commit is contained in:
Andrew V. Samoilov 2002-10-01 17:03:55 +00:00
parent bd5da0af5e
commit 07f3c2f7af
2 changed files with 8 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2002-10-01 Andrew V. Samoilov <sav@bcs.zp.ua>
* xdirentry.h: Comment out magic field everywhere.
2002-10-02 Pavel Roskin <proski@gnu.org>
* Makefile.am (VFSHDRS): Remove container.h.

View File

@ -37,7 +37,7 @@ typedef struct vfs_s_entry {
struct vfs_s_inode *dir; /* Directory we are in - needed for invalidating directory when file in it changes */
char *name; /* Name of this entry */
struct vfs_s_inode *ino; /* ... and its inode */
int magic;
/* int magic; */
#define ENTRY_MAGIC 0x014512563
} vfs_s_entry;
@ -66,7 +66,7 @@ typedef struct vfs_s_inode {
struct timeval timestamp;
} ftp;
} u;
int magic;
/* int magic; */
#define INODE_MAGIC 0x93451656
} vfs_s_inode;
@ -122,7 +122,7 @@ typedef struct vfs_s_super {
struct defer_inode *defered; /* List of inodes for which another entries may appear */
} cpio;
} u;
int magic;
/* int magic; */
#define SUPER_MAGIC 0x915ac312
} vfs_s_super;
@ -140,7 +140,7 @@ typedef struct vfs_s_fh {
int sock, append;
} ftp;
} u;
int magic;
/* int magic; */
#define FH_MAGIC 0x91324682
} vfs_s_fh;