Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-7]: src/sys/miscfs/fdesc Pull up following revision(s) (requested...
details: https://anonhg.NetBSD.org/src/rev/0292a9dfbf8e
branches: netbsd-7
changeset: 799284:0292a9dfbf8e
user: snj <snj%NetBSD.org@localhost>
date: Thu May 07 03:50:01 2015 +0000
description:
Pull up following revision(s) (requested by riz in ticket #737):
sys/miscfs/fdesc/fdesc_vfsops.c: revision 1.90
Fix type of /dev/tty
diffstat:
sys/miscfs/fdesc/fdesc_vfsops.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 79c28ba6cc95 -r 0292a9dfbf8e sys/miscfs/fdesc/fdesc_vfsops.c
--- a/sys/miscfs/fdesc/fdesc_vfsops.c Thu May 07 03:48:27 2015 +0000
+++ b/sys/miscfs/fdesc/fdesc_vfsops.c Thu May 07 03:50:01 2015 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: fdesc_vfsops.c,v 1.89.2.1 2015/01/17 12:10:53 martin Exp $ */
+/* $NetBSD: fdesc_vfsops.c,v 1.89.2.2 2015/05/07 03:50:01 snj Exp $ */
/*
* Copyright (c) 1992, 1993, 1995
@@ -41,7 +41,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: fdesc_vfsops.c,v 1.89.2.1 2015/01/17 12:10:53 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: fdesc_vfsops.c,v 1.89.2.2 2015/05/07 03:50:01 snj Exp $");
#if defined(_KERNEL_OPT)
#include "opt_compat_netbsd.h"
@@ -201,7 +201,7 @@
break;
case FD_CTTY:
fd->fd_type = Fctty;
- vp->v_type = VNON;
+ vp->v_type = VCHR;
break;
case FD_STDIN:
fd->fd_type = Flink;
Home |
Main Index |
Thread Index |
Old Index