svn commit: r210848 - head/sys/compat/freebsd32

Konstantin Belousov kib at FreeBSD.org
Wed Aug 4 14:38:20 UTC 2010


Author: kib
Date: Wed Aug  4 14:38:20 2010
New Revision: 210848
URL: http://svn.freebsd.org/changeset/base/210848

Log:
  Copy inode birthtime to the struct stat32.
  
  MFC after:	1 week

Modified:
  head/sys/compat/freebsd32/freebsd32_misc.c

Modified: head/sys/compat/freebsd32/freebsd32_misc.c
==============================================================================
--- head/sys/compat/freebsd32/freebsd32_misc.c	Wed Aug  4 14:35:05 2010	(r210847)
+++ head/sys/compat/freebsd32/freebsd32_misc.c	Wed Aug  4 14:38:20 2010	(r210848)
@@ -1634,6 +1634,7 @@ copy_stat(struct stat *in, struct stat32
 	CP(*in, *out, st_blksize);
 	CP(*in, *out, st_flags);
 	CP(*in, *out, st_gen);
+	TS_CP(*in, *out, st_birthtim);
 }
 
 int


More information about the svn-src-head mailing list