-$Id: CHANGES,v 1.103 2001/02/21 16:16:00 stelian Exp $
+$Id: CHANGES,v 1.104 2001/02/22 10:57:39 stelian Exp $
Changes between versions 0.4b21 and 0.4b22 (released ????????????????)
======================================================================
bug and providing a patch.
3. Added a compression option to dump, contributed by Jerry
- <gapeters@worldnet.att.net>.
+ Peters <gapeters@worldnet.att.net>.
WARNING: the compression works only on drives supporting
variable block size.
incompatible with the standard dump tape format, and a
version of restore >= 0.4b22 will be needed for extraction.
+4. Fixed some compilation problems for glibc 2.2.2 and 64 bit
+ architectures. Thanks to Paul Slootman <paul@debian.org> for
+ the patch and to Bdale Garbee <bdale@gag.com> for forwarding
+ it upstream.
+
Changes between versions 0.4b20 and 0.4b21 (released January 13, 2001)
======================================================================
-$Id: THANKS,v 1.42 2000/12/21 11:14:52 stelian Exp $
+$Id: THANKS,v 1.43 2001/02/22 10:57:39 stelian Exp $
Dump and restore were written by the people of the CSRG at the University
of California, Berkeley.
Lukas Nellen L.Nellen@ThPhys.Uni-Heidelberg.DE
Nuno Oliveira nuno@eq.uc.pt
Brent Olson night@halcyon.com
+Jerry Peters gapeters@worldnet.att.net
Dave Platt dplatt@snulbug.mtview.ca.us
Kenneth Porter shiva@well.com
+Graham Reed greed@users.sourceforge.net
Bernhard Sadlowski sadlowsk@Mathematik.Uni-Bielefeld.DE
Jan Sanislo oystr@cs.washington.edu
Patrik Schindler poc@pocnet.net
Gunther Schlegel schlegel@riege.de
Chris Siebenmann cks@utcc.utoronto.ca
+Paul Slootman paul@debian.org
Bob Snyder rsnyder@janet.advsys.com
Gabriel Somlo somlo@cs.colostate.edu
Matti Taskinen mkt@rni.helsinki.fi
#ifndef lint
static const char rcsid[] =
- "$Id: dumprmt.c,v 1.15 2000/12/21 11:14:53 stelian Exp $";
+ "$Id: dumprmt.c,v 1.16 2001/02/22 10:57:39 stelian Exp $";
#endif /* not lint */
#include <config.h>
{
char line[30];
- (void)snprintf(line, sizeof (line), "W%d\n", count);
+ (void)snprintf(line, sizeof (line), "W%ld\n", (long)count);
write(tormtape, line, strlen(line));
write(tormtape, buf, count);
return (rmtreply("write"));
#ifndef lint
static const char rcsid[] =
- "$Id: itime.c,v 1.14 2000/12/21 11:14:54 stelian Exp $";
+ "$Id: itime.c,v 1.15 2001/02/22 10:57:40 stelian Exp $";
#endif /* not lint */
#include <config.h>
#include <sys/time.h>
#ifdef __linux__
#include <linux/ext2_fs.h>
+#include <time.h>
#include <bsdcompat.h>
#include <sys/file.h>
#include <unistd.h>
#ifndef lint
static const char rcsid[] =
- "$Id: main.c,v 1.33 2001/02/21 16:13:05 stelian Exp $";
+ "$Id: main.c,v 1.34 2001/02/22 10:57:40 stelian Exp $";
#endif /* not lint */
#include <config.h>
#include <sys/time.h>
#ifdef __linux__
#include <linux/ext2_fs.h>
+#include <time.h>
#include <sys/stat.h>
#include <bsdcompat.h>
#else
}
iexclude_list[iexclude_num++] = numarg("inode to exclude",0L,0L);
if (iexclude_list[iexclude_num-1] <= ROOTINO) {
- (void)fprintf(stderr, "Cannot exclude inode %ld\n", iexclude_list[iexclude_num-1]);
+ (void)fprintf(stderr, "Cannot exclude inode %ld\n", (long)iexclude_list[iexclude_num-1]);
exit(X_STARTUP);
}
msg("Added %d to exclude list\n",
#ifndef lint
static const char rcsid[] =
- "$Id: optr.c,v 1.19 2001/02/21 16:13:05 stelian Exp $";
+ "$Id: optr.c,v 1.20 2001/02/22 10:57:40 stelian Exp $";
#endif /* not lint */
#include <config.h>
#include <ext2fs/ext2fs.h>
#include <bsdcompat.h>
#include <signal.h>
+#include <time.h>
#endif
#include "dump.h"
#ifndef lint
static const char rcsid[] =
- "$Id: tape.c,v 1.31 2001/02/21 16:13:05 stelian Exp $";
+ "$Id: tape.c,v 1.32 2001/02/22 10:57:40 stelian Exp $";
#endif /* not lint */
#include <config.h>
#ifdef __linux__
#include <sys/types.h>
+#include <time.h>
#include <linux/types.h>
#endif
#include <sys/param.h>
#ifndef lint
static const char rcsid[] =
- "$Id: tape.c,v 1.24 2001/02/21 16:13:05 stelian Exp $";
+ "$Id: tape.c,v 1.25 2001/02/22 10:57:40 stelian Exp $";
#endif /* not lint */
#include <config.h>
#ifdef __linux__
#include <sys/time.h>
+#include <time.h>
#include <linux/ext2_fs.h>
#include <bsdcompat.h>
#else /* __linux__ */