Module Name:    src
Committed By:   riz
Date:           Wed Oct 31 16:09:41 UTC 2012

Modified Files:
        src/sys/fs/ptyfs [netbsd-6]: ptyfs_subr.c

Log Message:
Pull up following revision(s) (requested by christos in ticket #639):
        sys/fs/ptyfs/ptyfs_subr.c: revision 1.24
fix the mystery of the bad directory times.


To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.23.8.1 src/sys/fs/ptyfs/ptyfs_subr.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/fs/ptyfs/ptyfs_subr.c
diff -u src/sys/fs/ptyfs/ptyfs_subr.c:1.23 src/sys/fs/ptyfs/ptyfs_subr.c:1.23.8.1
--- src/sys/fs/ptyfs/ptyfs_subr.c:1.23	Sun Jun 12 03:35:53 2011
+++ src/sys/fs/ptyfs/ptyfs_subr.c	Wed Oct 31 16:09:41 2012
@@ -1,4 +1,4 @@
-/*	$NetBSD: ptyfs_subr.c,v 1.23 2011/06/12 03:35:53 rmind Exp $	*/
+/*	$NetBSD: ptyfs_subr.c,v 1.23.8.1 2012/10/31 16:09:41 riz Exp $	*/
 
 /*
  * Copyright (c) 1993
@@ -73,7 +73,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ptyfs_subr.c,v 1.23 2011/06/12 03:35:53 rmind Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ptyfs_subr.c,v 1.23.8.1 2012/10/31 16:09:41 riz Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -174,7 +174,7 @@ ptyfs_getinfo(struct ptyfsnode *ptyfs, s
 	}
 out:
 	ptyfs->ptyfs_uid = ptyfs->ptyfs_gid = 0;
-	ptyfs->ptyfs_flags |= PTYFS_CHANGE;
+	ptyfs->ptyfs_flag |= PTYFS_CHANGE;
 	PTYFS_ITIMES(ptyfs, NULL, NULL, NULL);
 	ptyfs->ptyfs_birthtime = ptyfs->ptyfs_mtime =
 	    ptyfs->ptyfs_atime = ptyfs->ptyfs_ctime;

Reply via email to