summaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
authorTobias Weingartner <weingart@cvs.openbsd.org>1998-01-30 17:31:53 +0000
committerTobias Weingartner <weingart@cvs.openbsd.org>1998-01-30 17:31:53 +0000
commit3032f5d4a4d2beaf35f5963eac589bdef8c634d9 (patch)
treef2074d3fa55c1f1f81a4d62e1249e03d29ae3cb7 /sbin
parent56ca13e91de241c73c553ba068e25cef930b63e6 (diff)
Change error message to be like mount_ffs
Diffstat (limited to 'sbin')
-rw-r--r--sbin/mount_cd9660/mount_cd9660.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/mount_cd9660/mount_cd9660.c b/sbin/mount_cd9660/mount_cd9660.c
index 7b05a892b64..0a339e277e2 100644
--- a/sbin/mount_cd9660/mount_cd9660.c
+++ b/sbin/mount_cd9660/mount_cd9660.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mount_cd9660.c,v 1.8 1997/08/24 08:07:08 downsj Exp $ */
+/* $OpenBSD: mount_cd9660.c,v 1.9 1998/01/30 17:31:52 weingart Exp $ */
/* $NetBSD: mount_cd9660.c,v 1.3 1996/04/13 01:31:08 jtc Exp $ */
/*
@@ -49,7 +49,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)mount_cd9660.c 8.4 (Berkeley) 3/27/94";
#else
-static char rcsid[] = "$OpenBSD: mount_cd9660.c,v 1.8 1997/08/24 08:07:08 downsj Exp $";
+static char rcsid[] = "$OpenBSD: mount_cd9660.c,v 1.9 1998/01/30 17:31:52 weingart Exp $";
#endif
#endif /* not lint */
@@ -128,7 +128,7 @@ main(argc, argv)
if (errno == EOPNOTSUPP)
errx(1, "%s: Filesystem not supported by kernel", dir);
else
- err(1, "%s", dir);
+ err(1, "%s on %s", args.fspec, dir);
}
exit(0);
}