summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgreg@kroah.com <greg@kroah.com>2004-02-12 01:29:40 -0800
committerGreg KH <gregkh@suse.de>2005-04-26 21:32:27 -0700
commitd45ea2b70c0cba69b02dae81d696a8b4c05c1771 (patch)
tree1e06432865ee740dec00f542ced31e44c68824cd
parent3a8c51a771b5c67d5cf0002980254ef175668630 (diff)
[PATCH] stop using mode_t as different libcs define it in different ways :(
-rw-r--r--namedev.h2
-rw-r--r--udev.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/namedev.h b/namedev.h
index 9cff3710d4..a0cdba6b16 100644
--- a/namedev.h
+++ b/namedev.h
@@ -74,7 +74,7 @@ struct perm_device {
char name[NAME_SIZE];
char owner[OWNER_SIZE];
char group[GROUP_SIZE];
- mode_t mode;
+ unsigned int mode;
};
extern struct list_head config_device_list;
diff --git a/udev.h b/udev.h
index 108623e059..9e01e40492 100644
--- a/udev.h
+++ b/udev.h
@@ -40,7 +40,7 @@ struct udevice {
char type;
int major;
int minor;
- mode_t mode;
+ unsigned int mode; /* not mode_t due to conflicting definitions in different libcs */
char symlink[NAME_SIZE];
/* fields that help us in building strings */