summaryrefslogtreecommitdiffstats
path: root/sbin/restore/dirs.c
diff options
context:
space:
mode:
authordima <dima@FreeBSD.org>1998-10-27 04:01:19 +0000
committerdima <dima@FreeBSD.org>1998-10-27 04:01:19 +0000
commit832b98b6ffeefa742b85a92148797a3cf4eab153 (patch)
tree03992c539b8793227b7010010c9020daee7e0e71 /sbin/restore/dirs.c
parentedf1f9d5415de3b55c8cf737ff9b69cf7dc9f323 (diff)
downloadFreeBSD-src-832b98b6ffeefa742b85a92148797a3cf4eab153.zip
FreeBSD-src-832b98b6ffeefa742b85a92148797a3cf4eab153.tar.gz
64bit fixes.
(Note: ``dump'' doesn't work on alpha yet. Apparently there's a problem somewhere is the physio() area) Submitted by: myself && Matt Dillon.
Diffstat (limited to 'sbin/restore/dirs.c')
-rw-r--r--sbin/restore/dirs.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sbin/restore/dirs.c b/sbin/restore/dirs.c
index 15d7b06..db68d66 100644
--- a/sbin/restore/dirs.c
+++ b/sbin/restore/dirs.c
@@ -41,7 +41,7 @@
static char sccsid[] = "@(#)dirs.c 8.7 (Berkeley) 5/1/95";
#endif
static const char rcsid[] =
- "$Id$";
+ "$Id: dirs.c,v 1.12 1998/07/28 06:20:05 charnier Exp $";
#endif /* not lint */
#include <sys/param.h>
@@ -71,8 +71,8 @@ static const char rcsid[] =
struct inotab {
struct inotab *t_next;
ino_t t_ino;
- long t_seekpt;
- long t_size;
+ int32_t t_seekpt;
+ int32_t t_size;
};
static struct inotab *inotab[HASHSIZE];
@@ -95,8 +95,8 @@ struct modeinfo {
#define DIRBLKSIZ 1024
struct rstdirdesc {
int dd_fd;
- long dd_loc;
- long dd_size;
+ int32_t dd_loc;
+ int32_t dd_size;
char dd_buf[DIRBLKSIZ];
};
OpenPOWER on IntegriCloud