]> git.wh0rd.org - dump.git/blobdiff - dump/optr.c
Makes dump abort (-q option) whenever it needs operator attention.
[dump.git] / dump / optr.c
index 88ff63d0c8e708fd55aabdaace79e76add26b259..cd98e6664d36ba963f6fbd41c6001fbcd88b5b71 100644 (file)
 
 #ifndef lint
 static const char rcsid[] =
-       "$Id: optr.c,v 1.24 2001/06/18 11:07:45 stelian Exp $";
+       "$Id: optr.c,v 1.26 2001/08/16 09:37:59 stelian Exp $";
 #endif /* not lint */
 
 #include <config.h>
 #include <sys/param.h>
 #include <sys/wait.h>
 #include <sys/time.h>
+#include <time.h>
 
 #include <errno.h>
 #include <fstab.h>
@@ -105,6 +106,12 @@ query(const char *question)
        FILE    *mytty;
        time_t  firstprompt, when_answered;
 
+       if (qflag) {
+               msg("%s - forced abort\n", question);
+               dumpabort(0);
+               /* NOTREACHED */
+       }
+
        firstprompt = time(NULL);
 
        if ((mytty = fopen(_PATH_TTY, "r")) == NULL)