* sysdeps/mach/hurd/xstatconv.c (xstat64_conv): Don't forget to copy st_atime member.

2001-01-06  Mark Kettenis  <kettenis@gnu.org>

	* sysdeps/mach/hurd/xstatconv.c (xstat64_conv): Don't forget to
	copy st_atime member.
This commit is contained in:
Mark Kettenis 2001-01-06 01:52:03 +00:00
parent 25f227b924
commit 74ec0232c2
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2001-01-06 Mark Kettenis <kettenis@gnu.org>
* sysdeps/mach/hurd/xstatconv.c (xstat64_conv): Don't forget to
copy st_atime member.
2001-01-05 Ulrich Drepper <drepper@redhat.com>
* io/ftw.c (ftw_dir): Don't add a second slash at the beginning

View File

@ -1,5 +1,5 @@
/* Convert between `struct stat' format, and `struct stat64' format.
Copyright (C) 2000 Free Software Foundation, Inc.
Copyright (C) 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@ -35,6 +35,7 @@ xstat64_conv (struct stat *buf, struct stat64 *buf64)
buf64->st_uid = buf->st_uid;
buf64->st_gid = buf->st_gid;
buf64->st_size = buf->st_size;
buf64->st_atime = buf->st_atime;
buf64->st_atime_usec = buf->st_atime_usec;
buf64->st_mtime = buf->st_mtime;
buf64->st_mtime_usec = buf->st_mtime_usec;