]> git.wh0rd.org - dump.git/commitdiff
Fix the alpha dump header format. release_0_4b12
authorStelian Pop <stelian@popies.net>
Sat, 8 Jan 2000 10:00:39 +0000 (10:00 +0000)
committerStelian Pop <stelian@popies.net>
Sat, 8 Jan 2000 10:00:39 +0000 (10:00 +0000)
Delayed release.

CHANGES
MCONFIG.in
THANKS
compat/include/protocols/dumprestore.h
dump.lsm
dump.spec

diff --git a/CHANGES b/CHANGES
index c6aedef743d10438430587d835ebcbe39d39d29d..c79bbe6aeece2c9d32fabc8462db9248d329bad4 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,6 @@
-$Id: CHANGES,v 1.29 2000/01/07 19:39:38 tiniou Exp $
+$Id: CHANGES,v 1.30 2000/01/08 10:00:39 tiniou Exp $
 
 
-Changes between versions 0.4b11 and 0.4b12 (released January 7, 1999)
+Changes between versions 0.4b11 and 0.4b12 (released January 8, 1999)
 =====================================================================
 
 1.     Small fix in the dump man page. Thanks to Thorsten Kukuk 
 =====================================================================
 
 1.     Small fix in the dump man page. Thanks to Thorsten Kukuk 
@@ -29,6 +29,12 @@ Changes between versions 0.4b11 and 0.4b12 (released January 7, 1999)
        amanda users). Thanks to Jason L Tibbitts III 
        <tibbs@math.uh.edu> for reporting the bug.
 
        amanda users). Thanks to Jason L Tibbitts III 
        <tibbs@math.uh.edu> for reporting the bug.
 
+7.     Fixed a compatibility problem in linux/alpha dump tape format.
+       Now the linux/alpha dump are (again) compatible with the
+       other dump formats. But this breaks compatibility with
+       older dumps made on alpha. Thanks to Mike Tibor 
+       <tibor@lib.uaa.alaska.edu> for helping me in finding this bug.  
+
 Changes between versions 0.4b10 and 0.4b11 (released December 5, 1999)
 ======================================================================
 
 Changes between versions 0.4b10 and 0.4b11 (released December 5, 1999)
 ======================================================================
 
index dee78b6779fe0cecf33af5bb44be3d86ec21732f..6b12dc79b9ed4282991a71969a5c8b891187ef29 100644 (file)
@@ -3,7 +3,7 @@ VPATH=          $(srcdir)
 top_builddir=  @top_builddir@
 
 VERSION=       0.4b12
 top_builddir=  @top_builddir@
 
 VERSION=       0.4b12
-DATE=          January 7, 1999
+DATE=          January 8, 1999
 
 AR=            @AR@
 CC=            @CC@
 
 AR=            @AR@
 CC=            @CC@
diff --git a/THANKS b/THANKS
index ca81cb35a254448a86dc9e4ec3516baac260dfd1..58bd08e130a0e2a18185d7fb3e7d2abd0965c2db 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -1,4 +1,4 @@
-$Id: THANKS,v 1.15 2000/01/07 19:23:53 tiniou Exp $
+$Id: THANKS,v 1.16 2000/01/08 10:00:39 tiniou Exp $
 
 Dump and restore were written by the people of the CSRG at the University
 of California, Berkeley.
 
 Dump and restore were written by the people of the CSRG at the University
 of California, Berkeley.
@@ -48,6 +48,7 @@ Chris Siebenmann      cks@utcc.utoronto.ca
 Bob Snyder             rsnyder@janet.advsys.com
 Matti Taskinen         mkt@rni.helsinki.fi
 Jason L Tibbitts III   tibbs@math.uh.edu
 Bob Snyder             rsnyder@janet.advsys.com
 Matti Taskinen         mkt@rni.helsinki.fi
 Jason L Tibbitts III   tibbs@math.uh.edu
+Mike Tibor             tibor@lib.uaa.alaska.edu
 Theodore Y. Ts'o       tytso@mit.edu
 Stephen Tweedie                sct@dcs.ed.ac.uk
 Daniel Veillard                Daniel.Veillard@imag.fr
 Theodore Y. Ts'o       tytso@mit.edu
 Stephen Tweedie                sct@dcs.ed.ac.uk
 Daniel Veillard                Daniel.Veillard@imag.fr
index 0d6e0c8ed99af5cd8b37b17d2be33654c568384f..77b185950fae27bc8e8956c975684f25eb60972f 100644 (file)
@@ -43,7 +43,7 @@
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
- * $Id: dumprestore.h,v 1.4 2000/01/07 19:24:04 tiniou Exp $
+ * $Id: dumprestore.h,v 1.5 2000/01/08 10:00:41 tiniou Exp $
  */
 
 #ifndef _PROTOCOLS_DUMPRESTORE_H_
  */
 
 #ifndef _PROTOCOLS_DUMPRESTORE_H_
@@ -76,8 +76,8 @@ union u_spcl {
        char dummy[TP_BSIZE];
        struct  s_spcl {
                int32_t c_type;             /* record type (see below) */
        char dummy[TP_BSIZE];
        struct  s_spcl {
                int32_t c_type;             /* record type (see below) */
-               time_t  c_date;             /* date of this dump */
-               time_t  c_ddate;            /* date of previous dump */
+               int32_t c_date;             /* date of this dump */
+               int32_t c_ddate;            /* date of previous dump */
                int32_t c_volume;           /* dump volume number */
                daddr_t c_tapea;            /* logical block of this record */
                ino_t   c_inumber;          /* number of inode */
                int32_t c_volume;           /* dump volume number */
                daddr_t c_tapea;            /* logical block of this record */
                ino_t   c_inumber;          /* number of inode */
index b91f9b92b32f168f8093d4eb3e589ff8ffb8b126..728c0e08408fefe357434a570b0b963bc956e8ed 100644 (file)
--- a/dump.lsm
+++ b/dump.lsm
@@ -1,7 +1,7 @@
 Begin3
 Title:          dump and restore for Ext2fs
 Version:        0.4b12
 Begin3
 Title:          dump and restore for Ext2fs
 Version:        0.4b12
-Entered-date:   07DEC00
+Entered-date:   08JAN00
 Description:    Port of the 4.4BSD dump and restore backup suite
 Keywords:       backup, filesystem, Ext2fs
 Author:         University of California, Berkeley
 Description:    Port of the 4.4BSD dump and restore backup suite
 Keywords:       backup, filesystem, Ext2fs
 Author:         University of California, Berkeley
index d4a79e33252b6abe45e93c91bc6a35851a344714..8691914ccbfebb08d5fc0df64407fbb2d6c54a8c 100644 (file)
--- a/dump.spec
+++ b/dump.spec
@@ -117,7 +117,7 @@ rm -rf $RPM_BUILD_ROOT
 /sbin/rrestore.static
 
 %changelog
 /sbin/rrestore.static
 
 %changelog
-* Fri Jan 7 2000 Stelian Pop <pop@cybercable.fr>
+* Fri Jan 8 2000 Stelian Pop <pop@cybercable.fr>
 - dump 0.4b12 released, first packaging.
 
 * Sun Dec 5 1999 Stelian Pop <pop@cybercable.fr>
 - dump 0.4b12 released, first packaging.
 
 * Sun Dec 5 1999 Stelian Pop <pop@cybercable.fr>