diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-08-20 05:34:25 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-08-20 05:34:25 +0000 |
commit | 9ec97baaa5e4f3985fc9dd3020532c2c3831d64f (patch) | |
tree | 8baec386699d09d47f9b779f4326c05ba824cc0a /sbin/mount_ffs | |
parent | 56bb80b7000a842db363511c1dede0412e8cb45f (diff) |
Fix pasto.
Diffstat (limited to 'sbin/mount_ffs')
-rw-r--r-- | sbin/mount_ffs/mount_ffs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/mount_ffs/mount_ffs.c b/sbin/mount_ffs/mount_ffs.c index 66a93fc2720..2f0e2d073e9 100644 --- a/sbin/mount_ffs/mount_ffs.c +++ b/sbin/mount_ffs/mount_ffs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mount_ffs.c,v 1.7 1997/08/20 05:10:21 millert Exp $ */ +/* $OpenBSD: mount_ffs.c,v 1.8 1997/08/20 05:34:24 millert Exp $ */ /* $NetBSD: mount_ffs.c,v 1.3 1996/04/13 01:31:19 jtc Exp $ */ /*- @@ -44,7 +44,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)mount_ufs.c 8.2 (Berkeley) 3/27/94"; #else -static char rcsid[] = "$OpenBSD: mount_ffs.c,v 1.7 1997/08/20 05:10:21 millert Exp $"; +static char rcsid[] = "$OpenBSD: mount_ffs.c,v 1.8 1997/08/20 05:34:24 millert Exp $"; #endif #endif /* not lint */ @@ -117,7 +117,7 @@ main(argc, argv) errcause = "specified device does not match mounted device"; break; - case EINVAL: + case EOPNOTSUPP: errcause = "filesystem not supported by kernel"; break; default: |