]> git.wh0rd.org - dump.git/blobdiff - restore/restore.h
Changed ino_t to dump_ino_t.
[dump.git] / restore / restore.h
index 562b9109306fb688d5550fa045184cd871abd96c..6c77e5afd5dda49bffef0935c3d22f73d96b16b2 100644 (file)
@@ -5,7 +5,7 @@
  *     Stelian Pop <pop@noos.fr>, 1999-2000
  *     Stelian Pop <pop@noos.fr> - AlcĂ´ve <www.alcove.fr>, 2000
  *
- *     $Id: restore.h,v 1.13 2001/02/21 16:13:05 stelian Exp $
+ *     $Id: restore.h,v 1.14 2001/03/20 10:02:48 stelian Exp $
  */
 
 /*
@@ -67,7 +67,7 @@ extern int    zflag;          /* tape is in compressed format */
  */
 extern char    *dumpmap;       /* map of inodes on this dump tape */
 extern char    *usedinomap;    /* map of inodes that are in use on this fs */
-extern ino_t   maxino;         /* highest numbered inode in this file system */
+extern dump_ino_t maxino;      /* highest numbered inode in this file system */
 extern long    dumpnum;        /* location of the dump on this tape */
 extern long    volno;          /* current volume being read */
 extern long    ntrec;          /* number of TP_BSIZE records per tape block */
@@ -93,7 +93,7 @@ struct entry {
        u_char  e_namlen;               /* length of this name */
        char    e_type;                 /* type of this entry, see below */
        short   e_flags;                /* status flags, see below */
-       ino_t   e_ino;                  /* inode number in previous file sys */
+       dump_ino_t e_ino;               /* inode number in previous file sys */
        long    e_index;                /* unique index (for dumpped table) */
        struct  entry *e_parent;        /* pointer to parent directory (..) */
        struct  entry *e_sibling;       /* next element in this directory (.) */
@@ -125,7 +125,7 @@ struct entry {
  */
 struct context {
        char    *name;          /* name of file */
-       ino_t   ino;            /* inumber of file */
+       dump_ino_t ino;         /* inumber of file */
 #ifdef __linux__
        struct  new_bsd_inode *dip;     /* pointer to inode */
 #else