]> git.wh0rd.org - dump.git/blobdiff - restore/main.c
Cleaned up the external variables definition mess...
[dump.git] / restore / main.c
index 8b6b08e0a57b7b4cad9ccf47698771a284e26749..8d9c6d2c6ab7fa1a83482b9fdbc99623815d018d 100644 (file)
@@ -41,7 +41,7 @@
 
 #ifndef lint
 static const char rcsid[] =
-       "$Id: main.c,v 1.26 2001/07/18 13:12:33 stelian Exp $";
+       "$Id: main.c,v 1.27 2001/08/13 16:17:52 stelian Exp $";
 #endif /* not lint */
 
 #include <config.h>
@@ -81,7 +81,7 @@ static const char rcsid[] =
 #include "extern.h"
 
 int    bflag = 0, cvtflag = 0, dflag = 0, vflag = 0, yflag = 0;
-int    hflag = 1, mflag = 1, Nflag = 0, zflag = 0;
+int    hflag = 1, mflag = 1, Mflag = 0, Nflag = 0, zflag = 0;
 int    uflag = 0;
 int    dokerberos = 0;
 char   command = '\0';
@@ -101,6 +101,14 @@ char       filesys[NAMELEN];
 static const char *stdin_opt = NULL;
 char   *bot_script = NULL;
 
+#ifdef USE_QFA
+FILE   *gTapeposfp;
+char   *gTapeposfile;
+char   gTps[255];
+long   gSeekstart;
+int    tapeposflag;
+#endif /* USE_QFA */
+
 #ifdef __linux__
 char   *__progname;
 #endif