summaryrefslogtreecommitdiffstats
path: root/sbin/restore
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1997-03-11 11:59:39 +0000
committerpeter <peter@FreeBSD.org>1997-03-11 11:59:39 +0000
commitf59a1bdace6c4d430781dac9ecdb61b56a7ce466 (patch)
tree730714eb9f40740b836cf4b7eaa9cf50cc3cf4c9 /sbin/restore
parent0b3e1277b4e3cc3bb2575162ec238cac00b15a18 (diff)
parent5e2372f7211e467141b4939f21d1f81da257c059 (diff)
downloadFreeBSD-src-f59a1bdace6c4d430781dac9ecdb61b56a7ce466.zip
FreeBSD-src-f59a1bdace6c4d430781dac9ecdb61b56a7ce466.tar.gz
This commit was generated by cvs2svn to compensate for changes in r23669,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'sbin/restore')
-rw-r--r--sbin/restore/restore.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/sbin/restore/restore.h b/sbin/restore/restore.h
index 2202ccd..8dbcee8 100644
--- a/sbin/restore/restore.h
+++ b/sbin/restore/restore.h
@@ -35,7 +35,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * @(#)restore.h 8.2 (Berkeley) 1/21/94
+ * @(#)restore.h 8.3 (Berkeley) 9/13/94
*/
/*
@@ -53,7 +53,7 @@ extern int yflag; /* always try to recover from tape errors */
* Global variables
*/
extern char *dumpmap; /* map of inodes on this dump tape */
-extern char *clrimap; /* map of inodes to be deleted */
+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 long dumpnum; /* location of the dump on this tape */
extern long volno; /* current volume being read */
@@ -129,6 +129,8 @@ typedef struct rstdirdesc RST_DIR;
*/
#define TSTINO(ino, map) \
(map[(u_int)((ino) - 1) / NBBY] & (1 << ((u_int)((ino) - 1) % NBBY)))
+#define SETINO(ino, map) \
+ map[(u_int)((ino) - 1) / NBBY] |= 1 << ((u_int)((ino) - 1) % NBBY)
#define dprintf if (dflag) fprintf
#define vprintf if (vflag) fprintf
OpenPOWER on IntegriCloud