mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-03 08:11:08 +00:00
S390: Fix namespace violation in struct stat (BZ #16714).
This commit is contained in:
parent
26011b5cfa
commit
509361270b
@ -1,3 +1,9 @@
|
||||
2014-03-24 Stefan Liebler <stli@linux.vnet.ibm.com>
|
||||
|
||||
[BZ #16714]
|
||||
* sysdeps/unix/sysv/linux/s390/bits/stat.h
|
||||
(struct stat): Rename member pad0 to __glibc_reserved0.
|
||||
|
||||
2014-03-24 Stefan Liebler <stli@linux.vnet.ibm.com>
|
||||
|
||||
[BZ #16712]
|
||||
|
@ -55,7 +55,7 @@ struct stat
|
||||
__mode_t st_mode; /* File mode. */
|
||||
__uid_t st_uid; /* User ID of the file's owner. */
|
||||
__gid_t st_gid; /* Group ID of the file's group.*/
|
||||
int pad0;
|
||||
int __glibc_reserved0;
|
||||
__dev_t st_rdev; /* Device number, if device. */
|
||||
__off_t st_size; /* Size of file, in bytes. */
|
||||
#ifdef __USE_XOPEN2K8
|
||||
@ -152,7 +152,7 @@ struct stat64
|
||||
__mode_t st_mode; /* File mode. */
|
||||
__uid_t st_uid; /* User ID of the file's owner. */
|
||||
__gid_t st_gid; /* Group ID of the file's group.*/
|
||||
int pad0;
|
||||
int __glibc_reserved0;
|
||||
__dev_t st_rdev; /* Device number, if device. */
|
||||
__off_t st_size; /* Size of file, in bytes. */
|
||||
# ifdef __USE_XOPEN2K8
|
||||
|
Loading…
Reference in New Issue
Block a user