diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-04-24 18:24:17 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-04-24 18:24:17 +0000 |
commit | 9edd19aad6201d9e186e74d48d72742934c1ef6b (patch) | |
tree | 9b20071e723ed8250dad9def5f0112b0a0456a11 | |
parent | 624cdda76ab25746769e7642f749e506d44fcb14 (diff) |
(DIRECT_NAMLEN) [LITTLE_ENDIAN]: Deal with case correctly where it was
written without the extension on a big endian machine.
-rw-r--r-- | ufs/dir.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -90,8 +90,9 @@ struct directory_entry { /* Return the namlen from a struct direct, paying attention to whether this filesystem supports the type extension */ #if (BYTE_ORDER == LITTLE_ENDIAN) -#define DIRECT_NAMLEN(dp) (direct_symlink_extension ? (dp)->d_namlen : \ - (dp)->d_type) +#define DIRECT_NAMLEN(dp) (direct_symlink_extension || swab_disk \ + ? (dp)->d_namlen \ + : (dp)->(dp)->d_type) #else #define DIRECT_NAMLEN(dp) ((dp)->d_namlen) #endif |