]> git.wh0rd.org - dump.git/blobdiff - restore/restore.h
Version 0.4b6.
[dump.git] / restore / restore.h
index dbb97e5c03d7c0266acb3e22568343ddda83d448..cbe17bdf43f576b8cfcaf186727c49e1f453cf1b 100644 (file)
@@ -71,6 +71,7 @@ extern time_t dumptime;       /* time that this dump begins */
 extern time_t  dumpdate;       /* time that this dump was made */
 extern char    command;        /* opration being performed */
 extern FILE    *terminal;      /* file descriptor for the terminal input */
+extern char    *tmpdir;        /* name of temp directory */
 extern int     oldinofmt;      /* reading tape with old format inodes */
 extern int     Bcvt;           /* need byte swapping on inodes and dirs */
 extern int     compare_ignore_not_found;
@@ -78,7 +79,6 @@ extern int    compare_ignore_not_found;
                                /* so messages about "not found" files */
                                /* isn't seen. */
 extern char    *filesys;       /* name of dumped filesystem */
-extern char    *tmpdir;        /* name of temp directory */
 
 /*
  * Each file in the file system is described by one of these entries
@@ -151,8 +151,8 @@ typedef struct rstdirdesc RST_DIR;
 #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
+#define Dprintf                if (dflag) fprintf
+#define Vprintf                if (vflag) fprintf
 
 #define GOOD 1
 #define FAIL 0