X-Git-Url: https://git.wh0rd.org/?a=blobdiff_plain;f=dump%2Fitime.c;h=20aa69a2b6f6cb55a2de6d1abb06c1f34339b311;hb=90aa48744a16dcf7ec265a9437004fd3c4d8b526;hp=64d7644c6f8123f4e6ec31e1fb17602b030b015c;hpb=92a9bf12543aadfcc46e7ab9c2729b4d4d1f22ee;p=dump.git diff --git a/dump/itime.c b/dump/itime.c index 64d7644..20aa69a 100644 --- a/dump/itime.c +++ b/dump/itime.c @@ -2,7 +2,8 @@ * Ported to Linux's Second Extended File System as part of the * dump and restore backup suit * Remy Card , 1994-1997 - * Stelian Pop , 1999-2000 + * Stelian Pop , 1999-2000 + * Stelian Pop - AlcĂ´ve , 2000 */ /*- @@ -40,9 +41,10 @@ #ifndef lint static const char rcsid[] = - "$Id: itime.c,v 1.10 2000/03/01 10:16:05 stelian Exp $"; + "$Id: itime.c,v 1.14 2000/12/21 11:14:54 stelian Exp $"; #endif /* not lint */ +#include #include #include #ifdef __linux__ @@ -78,10 +80,10 @@ static const char rcsid[] = #include "dump.h" -struct dumpdates **ddatev = 0; -int nddates = 0; -int ddates_in = 0; -struct dumptime *dthead = 0; +struct dumpdates **ddatev; +int nddates; +int ddates_in; +struct dumptime *dthead; static void dumprecout __P((FILE *, struct dumpdates *)); static int getrecord __P((FILE *, struct dumpdates *)); @@ -317,5 +319,7 @@ makedumpdate(struct dumpdates *ddp, char *tbuf) ddp->dd_ddate = unctime(tbuf); if (ddp->dd_ddate < 0) return(-1); + /* fstab entry */ + ddp->dd_fstab = fstabsearch(ddp->dd_name); return(0); }