-$Id: CHANGES,v 1.209 2003/01/24 11:01:43 stelian Exp $
+$Id: CHANGES,v 1.210 2003/02/04 12:24:37 stelian Exp $
Changes between versions 0.4b32 and 0.4b33 (released ?????????????????)
=======================================================================
an extra, unrelated error message). Thanks to Dragan Krnic
<dkrnic@lycos.com> for reporting this bug.
-4. Made dump look first into /etc/fstab, then into /etc/mtab
+4. Made dump look first into /etc/mtab, then into /etc/fstab
when searching for filesystem paths. Also fixed some problems
caused by binding mounts or multiple block device mounts.
Thanks to Matus Uhlar <uhlar@fantomas.sk>, Elliott Mitchell
- <ehem@m5p.com>, Greg Edwards <gedwards@users.sourceforge.net>.
- (fixes Debian bugs #147086 and #160305, Sourceforge bug #618699)
+ <ehem@m5p.com>, Greg Edwards <gedwards@users.sourceforge.net>,
+ Brian Hoy <brian.hoy@opus.co.nz>. (fixes Debian bugs #147086
+ and #160305, Sourceforge bugs #618699 and #679832).
5. Made dump's -I option accept the value '0' meaning all the
read errors will be ignored. This can be useful when running
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" $Id: dump.8.in,v 1.48 2003/01/21 10:42:27 stelian Exp $
+.\" $Id: dump.8.in,v 1.49 2003/02/04 12:24:40 stelian Exp $
.\"
.TH DUMP 8 "version __VERSION__ of __DATE__" BSD "System management commands"
.SH NAME
to print out, for all file systems in
.I __DUMPDATES__ ,
and regognized file systems in
+.I /etc/mtab
+and
.IR /etc/fstab .
the most recent dump date and level, and highlights those that should be
dumped. If the
Is like
.BR \-W ,
but prints only recognized filesystems in
+.I /etc/mtab
+and
.I /etc/fstab
which need to be dumped.
.TP
.I /etc/fstab
dump table: file systems and frequency
.TP
+.I /etc/mtab
+dump table: mounted file systems
+.TP
.I /etc/group
to find group
.I operator
#ifndef lint
static const char rcsid[] =
- "$Id: optr.c,v 1.34 2003/01/21 10:42:27 stelian Exp $";
+ "$Id: optr.c,v 1.35 2003/02/04 12:24:40 stelian Exp $";
#endif /* not lint */
#include <config.h>
struct pfstab *pf;
struct pfstab *pfold = NULL;
FILE *mntfp;
- char *mnttables[] = { _PATH_MNTTAB, _PATH_MOUNTED, 0 };
+ char *mnttables[] = { _PATH_MOUNTED, _PATH_MNTTAB, 0 };
int i;
for (i = 0; mnttables[i]; i++) {