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.
This commit is contained in:
Dmitrij Tejblum 1999-03-28 23:00:33 +00:00
parent a780977066
commit f1cde7a270
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=45098
2 changed files with 2 additions and 6 deletions

View File

@ -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__

View File

@ -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__