Module Name: src
Committed By: pooka
Date: Wed Oct 7 20:42:09 UTC 2009
Modified Files:
src/sbin/mount_cd9660: mount_cd9660.c
Log Message:
fspec: dev -> canon_dev
To generate a diff of this commit:
cvs rdiff -u -r1.30 -r1.31 src/sbin/mount_cd9660/mount_cd9660.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sbin/mount_cd9660/mount_cd9660.c
diff -u src/sbin/mount_cd9660/mount_cd9660.c:1.30 src/sbin/mount_cd9660/mount_cd9660.c:1.31
--- src/sbin/mount_cd9660/mount_cd9660.c:1.30 Sat Jan 3 23:09:41 2009
+++ src/sbin/mount_cd9660/mount_cd9660.c Wed Oct 7 20:42:09 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: mount_cd9660.c,v 1.30 2009/01/03 23:09:41 christos Exp $ */
+/* $NetBSD: mount_cd9660.c,v 1.31 2009/10/07 20:42:09 pooka Exp $ */
/*
* Copyright (c) 1992, 1993, 1994
@@ -46,7 +46,7 @@
#if 0
static char sccsid[] = "@(#)mount_cd9660.c 8.7 (Berkeley) 5/1/95";
#else
-__RCSID("$NetBSD: mount_cd9660.c,v 1.30 2009/01/03 23:09:41 christos Exp $");
+__RCSID("$NetBSD: mount_cd9660.c,v 1.31 2009/10/07 20:42:09 pooka Exp $");
#endif
#endif /* not lint */
@@ -157,7 +157,7 @@
*/
if ((*mntflags & MNT_GETARGS) == 0)
*mntflags |= MNT_RDONLY;
- args->fspec = dev;
+ args->fspec = canon_dev;
args->flags = opts;
}