summaryrefslogtreecommitdiffstats
path: root/sys/msdosfs
diff options
context:
space:
mode:
authordt <dt@FreeBSD.org>1999-03-28 23:00:33 +0000
committerdt <dt@FreeBSD.org>1999-03-28 23:00:33 +0000
commit17d3194a813a75b654e58b64e8032c2c187d136c (patch)
tree776e4f75afa4dc3dbc644d0ef0bfe8a1694324b8 /sys/msdosfs
parentcef8c0135112d4b52b152f3def9224e88229fc89 (diff)
downloadFreeBSD-src-17d3194a813a75b654e58b64e8032c2c187d136c.zip
FreeBSD-src-17d3194a813a75b654e58b64e8032c2c187d136c.tar.gz
Back out half of 1.32: don't print a message on every failed mount attempt.
It is too chatty and hardly useful. 2 mesages in somewhat usual cases are left for now.
Diffstat (limited to 'sys/msdosfs')
-rw-r--r--sys/msdosfs/msdosfs_vfsops.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/msdosfs/msdosfs_vfsops.c b/sys/msdosfs/msdosfs_vfsops.c
index bca552c..1014629 100644
--- a/sys/msdosfs/msdosfs_vfsops.c
+++ b/sys/msdosfs/msdosfs_vfsops.c
@@ -1,4 +1,4 @@
-/* $Id: msdosfs_vfsops.c,v 1.39 1998/12/07 21:58:35 archie Exp $ */
+/* $Id: msdosfs_vfsops.c,v 1.40 1999/01/27 22:42:09 dillon Exp $ */
/* $NetBSD: msdosfs_vfsops.c,v 1.51 1997/11/17 15:36:58 ws Exp $ */
/*-
@@ -459,7 +459,6 @@ mountmsdosfs(devvp, mp, p, argp)
|| bsp->bs50.bsBootSectSig1 != BOOTSIG1) {
#endif
error = EINVAL;
- printf("mountmsdosfs(): bad signature\n");
goto error_exit;
}
#ifndef __FreeBSD__
@@ -498,7 +497,6 @@ mountmsdosfs(devvp, mp, p, argp)
|| !pmp->pm_SecPerTrack || pmp->pm_SecPerTrack > 63) {
#endif
error = EINVAL;
- printf("mountmsdosfs(): bad bpb\n");
goto error_exit;
}
#ifndef __FreeBSD__
OpenPOWER on IntegriCloud