label_file.c: In function ‘load_mmap’: label_file.c:238:81: error: declaration of ‘stat’ shadows a global declaration [-Werror=shadow] cc1: all warnings being treated as errors Signed-off-by: Joe MacDonald <joe@xxxxxxxxxxxx> --- libselinux/src/label_file.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libselinux/src/label_file.c b/libselinux/src/label_file.c index 51520cf..af7c227 100644 --- a/libselinux/src/label_file.c +++ b/libselinux/src/label_file.c @@ -235,7 +235,7 @@ static int process_line(struct selabel_handle *rec, return 0; } -static int load_mmap(struct selabel_handle *rec, const char *path, struct stat *stat) +static int load_mmap(struct selabel_handle *rec, const char *path, struct stat *sb) { struct saved_data *data = (struct saved_data *)rec->data; char mmap_path[PATH_MAX + 1]; @@ -266,13 +266,13 @@ static int load_mmap(struct selabel_handle *rec, const char *path, struct stat * } /* if mmap is old, ignore it */ - if (mmap_stat.st_mtime < stat->st_mtime) { + if (mmap_stat.st_mtime < sb->st_mtime) { close(mmapfd); return -1; } - if (mmap_stat.st_mtime == stat->st_mtime && - mmap_stat.st_mtim.tv_nsec < stat->st_mtim.tv_nsec) { + if (mmap_stat.st_mtime == sb->st_mtime && + mmap_stat.st_mtim.tv_nsec < sb->st_mtim.tv_nsec) { close(mmapfd); return -1; } -- 1.7.9.5 -- This message was distributed to subscribers of the selinux mailing list. If you no longer wish to subscribe, send mail to majordomo@xxxxxxxxxxxxx with the words "unsubscribe selinux" without quotes as the message.