Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/rump/librump/rumpvfs create /dev with 0755 instead of 07...
details: https://anonhg.NetBSD.org/src/rev/12129e32a289
branches: trunk
changeset: 787321:12129e32a289
user: pooka <pooka%NetBSD.org@localhost>
date: Mon Jun 10 19:48:22 2013 +0000
description:
create /dev with 0755 instead of 0777 (though it's now effectively the
same due to cmask)
diffstat:
sys/rump/librump/rumpvfs/rump_vfs.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r f5a032381f38 -r 12129e32a289 sys/rump/librump/rumpvfs/rump_vfs.c
--- a/sys/rump/librump/rumpvfs/rump_vfs.c Mon Jun 10 19:40:53 2013 +0000
+++ b/sys/rump/librump/rumpvfs/rump_vfs.c Mon Jun 10 19:48:22 2013 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: rump_vfs.c,v 1.76 2013/04/29 19:31:46 pooka Exp $ */
+/* $NetBSD: rump_vfs.c,v 1.77 2013/06/10 19:48:22 pooka Exp $ */
/*
* Copyright (c) 2008 Antti Kantee. All Rights Reserved.
@@ -29,7 +29,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rump_vfs.c,v 1.76 2013/04/29 19:31:46 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rump_vfs.c,v 1.77 2013/06/10 19:48:22 pooka Exp $");
#include <sys/param.h>
#include <sys/buf.h>
@@ -135,7 +135,7 @@
vfs_mountroot();
/* "mtree": create /dev */
- do_sys_mkdir("/dev", 0777, UIO_SYSSPACE);
+ do_sys_mkdir("/dev", 0755, UIO_SYSSPACE);
rump_proc_vfs_init = pvfs_init;
rump_proc_vfs_release = pvfs_rele;
Home |
Main Index |
Thread Index |
Old Index