]> git.wh0rd.org - dump.git/blobdiff - dump/dump.h
Added version in usage text.
[dump.git] / dump / dump.h
index 8424c719c0e727ac42adc33ec9b926f6b9f43ff8..12228ec154637d70665a3e877aa8e8d9c4d37647 100644 (file)
@@ -2,8 +2,9 @@
  *     Ported to Linux's Second Extended File System as part of the
  *     dump and restore backup suit
  *     Remy Card <card@Linux.EU.Org>, 1994-1997
- *      Stelian Pop <pop@cybercable.fr>, 1999 
+ *     Stelian Pop <pop@cybercable.fr>, 1999
  *
+ *     $Id: dump.h,v 1.6 1999/10/13 09:57:19 stelian Exp $
  */
 
 /*-
@@ -37,8 +38,6 @@
  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
- *
- *     @(#)dump.h      8.2 (Berkeley) 4/28/95
  */
 
 #define MAXINOPB       (MAXBSIZE / sizeof(struct dinode))
@@ -208,8 +207,8 @@ struct      dumptime *dthead;       /* head of the list version */
 int    nddates;                /* number of records (might be zero) */
 int    ddates_in;              /* we have read the increment file */
 struct dumpdates **ddatev;     /* the arrayfied version */
-void   initdumptimes __P((void));
-void   getdumptime __P((void));
+void   initdumptimes __P((int));
+void   getdumptime __P((int));
 void   putdumptime __P((void));
 #define        ITITERATE(i, ddp) \
        for (ddp = ddatev[i = 0]; i < nddates; ddp = ddatev[++i])
@@ -229,7 +228,7 @@ extern int errno;
 #endif
 
 #ifdef __linux__
-#define        DUMP_CURRENT_REV        0
+#define        DUMP_CURRENT_REV        1
 #endif
 
 #ifndef        __linux__