tomoyo_mini_stat: switch to umode_t
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
@@ -112,7 +112,7 @@ out:
|
|||||||
*
|
*
|
||||||
* Returns file type string.
|
* Returns file type string.
|
||||||
*/
|
*/
|
||||||
static inline const char *tomoyo_filetype(const mode_t mode)
|
static inline const char *tomoyo_filetype(const umode_t mode)
|
||||||
{
|
{
|
||||||
switch (mode & S_IFMT) {
|
switch (mode & S_IFMT) {
|
||||||
case S_IFREG:
|
case S_IFREG:
|
||||||
@@ -180,7 +180,7 @@ static char *tomoyo_print_header(struct tomoyo_request_info *r)
|
|||||||
for (i = 0; i < TOMOYO_MAX_PATH_STAT; i++) {
|
for (i = 0; i < TOMOYO_MAX_PATH_STAT; i++) {
|
||||||
struct tomoyo_mini_stat *stat;
|
struct tomoyo_mini_stat *stat;
|
||||||
unsigned int dev;
|
unsigned int dev;
|
||||||
mode_t mode;
|
umode_t mode;
|
||||||
if (!obj->stat_valid[i])
|
if (!obj->stat_valid[i])
|
||||||
continue;
|
continue;
|
||||||
stat = &obj->stat[i];
|
stat = &obj->stat[i];
|
||||||
|
@@ -564,7 +564,7 @@ struct tomoyo_mini_stat {
|
|||||||
uid_t uid;
|
uid_t uid;
|
||||||
gid_t gid;
|
gid_t gid;
|
||||||
ino_t ino;
|
ino_t ino;
|
||||||
mode_t mode;
|
umode_t mode;
|
||||||
dev_t dev;
|
dev_t dev;
|
||||||
dev_t rdev;
|
dev_t rdev;
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user