summaryrefslogtreecommitdiff
path: root/sbin/dump
diff options
context:
space:
mode:
authordholland <dholland@NetBSD.org>2015-08-12 18:28:00 +0000
committerdholland <dholland@NetBSD.org>2015-08-12 18:28:00 +0000
commit08d0c37fa239874463c5514f143d31a35243452b (patch)
tree122c1eaaa5d6f8713b760e9944c9a3cbb863dc28 /sbin/dump
parent0154f35e5d47b8e44e5b3dd43e33de5dc3472fb1 (diff)
Hack up dinode usage to be 64 vs. 32 as needed. Part 1.
(This part changes the native lfs code; the ufs-derived code already has 64 vs. 32 logic, but as aspects of it are unsafe, and don't entirely interoperate cleanly with the lfs 64/32 stuff, pass 2 will be rehashing that.)
Diffstat (limited to 'sbin/dump')
-rw-r--r--sbin/dump/dump.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/dump/dump.h b/sbin/dump/dump.h
index 86020e362f0..505f9664f60 100644
--- a/sbin/dump/dump.h
+++ b/sbin/dump/dump.h
@@ -1,4 +1,4 @@
-/* $NetBSD: dump.h,v 1.52 2015/07/28 05:09:34 dholland Exp $ */
+/* $NetBSD: dump.h,v 1.53 2015/08/12 18:28:00 dholland Exp $ */
/*-
* Copyright (c) 1980, 1993
@@ -43,8 +43,8 @@ union dinode {
struct ufs1_dinode dp1;
struct ufs2_dinode dp2;
#ifdef DUMP_LFS
- struct ulfs1_dinode dlp1;
- struct ulfs2_dinode dlp2;
+ struct lfs32_dinode dlp32;
+ struct lfs64_dinode dlp64;
#endif
};
#define DIP(dp, field) \