Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-9]: src/usr.sbin/sysinst Pull up following revision(s) (requested...
details: https://anonhg.NetBSD.org/src/rev/311c368865a0
branches: netbsd-9
changeset: 962771:311c368865a0
user: msaitoh <msaitoh%NetBSD.org@localhost>
date: Thu Aug 08 05:53:03 2019 +0000
description:
Pull up following revision(s) (requested by martin in ticket #29):
usr.sbin/sysinst/disks.c: revision 1.48
When creating the /etc/fstab for new installs, the sense of the "noauto"
flag was inverted (editor mishap?)
diffstat:
usr.sbin/sysinst/disks.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (18 lines):
diff -r ba4064327e24 -r 311c368865a0 usr.sbin/sysinst/disks.c
--- a/usr.sbin/sysinst/disks.c Thu Aug 08 05:51:43 2019 +0000
+++ b/usr.sbin/sysinst/disks.c Thu Aug 08 05:53:03 2019 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: disks.c,v 1.44.2.3 2019/08/08 05:51:43 msaitoh Exp $ */
+/* $NetBSD: disks.c,v 1.44.2.4 2019/08/08 05:53:03 msaitoh Exp $ */
/*
* Copyright 1997 Piermont Information Systems Inc.
@@ -1352,7 +1352,7 @@
"%s%s\t\t%s\t%s\trw%s%s%s%s%s%s%s%s\t\t %d %d\n",
s, dev, mp, fstype,
ptn->mountflags & PUIMNT_LOG ? ",log" : "",
- ptn->mountflags & PUIMNT_NOAUTO ? "" : ",noauto",
+ ptn->mountflags & PUIMNT_NOAUTO ? ",noauto" : "",
ptn->mountflags & PUIMNT_ASYNC ? ",async" : "",
ptn->mountflags & PUIMNT_NOATIME ? ",noatime" : "",
ptn->mountflags & PUIMNT_NODEV ? ",nodev" : "",
Home |
Main Index |
Thread Index |
Old Index