diff options
author | gpalmer <gpalmer@FreeBSD.org> | 1996-04-03 23:05:40 +0000 |
---|---|---|
committer | gpalmer <gpalmer@FreeBSD.org> | 1996-04-03 23:05:40 +0000 |
commit | 6495025245f2ce345b8f70810672760f7e223b1f (patch) | |
tree | 80972d7d2e3b6bb8e0e5d018dd421c7d85999b6b /sys | |
parent | 504f00946f86288718f826c4e2d795f2c94c740e (diff) | |
download | FreeBSD-src-6495025245f2ce345b8f70810672760f7e223b1f.zip FreeBSD-src-6495025245f2ce345b8f70810672760f7e223b1f.tar.gz |
add a `Warning:' to the message saying that the root directory is not a
multiple of the clustersize in length to try and reduce the number
of questions we get on the subject.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/fs/msdosfs/msdosfs_vfsops.c | 4 | ||||
-rw-r--r-- | sys/msdosfs/msdosfs_vfsops.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/fs/msdosfs/msdosfs_vfsops.c b/sys/fs/msdosfs/msdosfs_vfsops.c index d3c5281..18dc492 100644 --- a/sys/fs/msdosfs/msdosfs_vfsops.c +++ b/sys/fs/msdosfs/msdosfs_vfsops.c @@ -1,4 +1,4 @@ -/* $Id: msdosfs_vfsops.c,v 1.10 1995/11/16 11:48:08 bde Exp $ */ +/* $Id: msdosfs_vfsops.c,v 1.11 1996/01/05 18:31:43 wollman Exp $ */ /* $NetBSD: msdosfs_vfsops.c,v 1.19 1994/08/21 18:44:10 ws Exp $ */ /*- @@ -393,7 +393,7 @@ mountmsdosfs(devvp, mp, p) if ((pmp->pm_rootdirsize % pmp->pm_SectPerClust) != 0) - printf("mountmsdosfs(): root directory is not a multiple of the clustersize in length\n"); + printf("mountmsdosfs(): Warning: root directory is not a multiple of the clustersize in length\n"); /* * Compute mask and shift value for isolating cluster relative byte diff --git a/sys/msdosfs/msdosfs_vfsops.c b/sys/msdosfs/msdosfs_vfsops.c index d3c5281..18dc492 100644 --- a/sys/msdosfs/msdosfs_vfsops.c +++ b/sys/msdosfs/msdosfs_vfsops.c @@ -1,4 +1,4 @@ -/* $Id: msdosfs_vfsops.c,v 1.10 1995/11/16 11:48:08 bde Exp $ */ +/* $Id: msdosfs_vfsops.c,v 1.11 1996/01/05 18:31:43 wollman Exp $ */ /* $NetBSD: msdosfs_vfsops.c,v 1.19 1994/08/21 18:44:10 ws Exp $ */ /*- @@ -393,7 +393,7 @@ mountmsdosfs(devvp, mp, p) if ((pmp->pm_rootdirsize % pmp->pm_SectPerClust) != 0) - printf("mountmsdosfs(): root directory is not a multiple of the clustersize in length\n"); + printf("mountmsdosfs(): Warning: root directory is not a multiple of the clustersize in length\n"); /* * Compute mask and shift value for isolating cluster relative byte |