-$Id: CHANGES,v 1.85 2000/11/03 18:28:58 stelian Exp $
+$Id: CHANGES,v 1.86 2000/11/10 09:35:07 stelian Exp $
Changes between versions 0.4b19 and 0.4b20 (released ???????????????)
=====================================================================
7. Restore the real uid and gid before invoking an external
RSH program (big hole when dump or restore is suid root!).
+8. Get the values for the default tape device and the location
+ of fstab file from the system headers. Thanks to
+ Andreas Dilger <adilger@turbolinux.com> for the patch.
+
Changes between versions 0.4b18 and 0.4b19 (released August 20, 2000)
=====================================================================
-$Id: THANKS,v 1.37 2000/09/01 14:26:23 stelian Exp $
+$Id: THANKS,v 1.38 2000/11/10 09:35:07 stelian Exp $
Dump and restore were written by the people of the CSRG at the University
of California, Berkeley.
W. Reilly Cooley wcooley@nakedape.cc
Abhijit Dasgupta abhijit@ans.net
John R. Dennison gerdesas@users.sourceforge.net
-Andreas Dilger adilger@home.com
+Andreas Dilger adilger@turbolinux.com
Bernhard Erdmann bernhard.erdmann@gmx.de
Jason Fearon jasonf@netrider.org.au
Jeremy Fitzhardinge jeremy@goop.org
* Remy Card <card@Linux.EU.Org>, 1994-1997
* Stelian Pop <pop@cybercable.fr>, 1999-2000
*
- * $Id: fstab.h,v 1.5 2000/01/21 10:17:41 stelian Exp $
+ * $Id: fstab.h,v 1.6 2000/11/10 09:35:07 stelian Exp $
*/
/*
* if type is "rq", then use concatenation of fs_file and "quotas" to locate
* quota file.
*/
+#ifdef __linux__
+#include <mntent.h>
+#define _PATH_FSTAB _PATH_MNTTAB
+#endif
+#ifndef _PATH_FSTAB
#define _PATH_FSTAB "/etc/fstab"
-#define FSTAB "/etc/fstab" /* deprecated */
+#endif
+#define FSTAB _PATH_FSTAB /* deprecated */
#define FSTAB_DEF "defaults" /* default mount option */
#define FSTAB_RW "rw" /* read/write device */
* Remy Card <card@Linux.EU.Org>, 1994-1997
* Stelian Pop <pop@cybercable.fr>, 1999-2000
*
- * $Id: pathnames.h,v 1.7 2000/02/26 01:35:48 stelian Exp $
+ * $Id: pathnames.h,v 1.8 2000/11/10 09:35:07 stelian Exp $
*/
/*
#include <paths.h>
+#ifdef __linux__
+#include <sys/mtio.h> /* use the same default tape as "mt" */
+#define _PATH_DEFTAPE DEFTAPE
+#endif
+
+#ifndef _PATH_DEFTAPE
#define _PATH_DEFTAPE "/dev/st0"
+#endif
+
#define _PATH_RMT "/etc/rmt" /* path on remote host */