X-Git-Url: https://git.wh0rd.org/?p=dump.git;a=blobdiff_plain;f=compat%2Finclude%2Fbsdcompat.h;h=bb39fe8a292bfd49c20d08880492b079d043bad6;hp=8aad39790066845569e9338e6ec39c65d9a26e0e;hb=8eb05297aafdfd88bbd946a35d4db771604503bd;hpb=f40dd59c0201c2fd823e1efb8d737fe3399c8fd9 diff --git a/compat/include/bsdcompat.h b/compat/include/bsdcompat.h index 8aad397..bb39fe8 100644 --- a/compat/include/bsdcompat.h +++ b/compat/include/bsdcompat.h @@ -4,7 +4,7 @@ * Remy Card , 1994-1997 * Stelian Pop , 1999-2000 * - * $Id: bsdcompat.h,v 1.9 2000/01/21 10:17:41 stelian Exp $ + * $Id: bsdcompat.h,v 1.10 2000/02/10 09:42:32 stelian Exp $ */ #include @@ -131,18 +131,30 @@ struct dinode { #define d_fileno d_ino #endif -struct direct { +/* + * This is the direct structure used by dump. In needs to be + * different from direct because linux dump generates only + * 'old inode format' dumps. And BSD supposes that the old + * inode dumps have the d_namelen field written in machine byte + * order... + */ +struct olddirect { __u32 d_ino; __u16 d_reclen; -#if 1 - __u8 d_namlen; - __u8 d_type; -#else __u16 d_namlen; -#endif - char d_name[MAXNAMLEN + 1]; + char d_name[MAXNAMLEN + 1]; }; +/* + * The direct structure used by restore. + */ +struct direct { + __u32 d_ino; + __u16 d_reclen; + __u8 d_type; + __u8 d_namlen; + char d_name[MAXNAMLEN + 1]; +}; /* * Convert between stat structure types and directory types. */