summaryrefslogtreecommitdiff
path: root/udev.h
diff options
context:
space:
mode:
authorhannal@us.ibm.com <hannal@us.ibm.com>2004-01-19 19:42:42 -0800
committerGreg KH <gregkh@suse.de>2005-04-26 21:13:17 -0700
commit74c73ef994f3ea8d013c33fe7be73e0c0c86977b (patch)
treeb8bc8217dccaacf15a34c69ef11a7a17484d3106 /udev.h
parentb2a21a35476b4780ef1fc68c60216117ab66fa2b (diff)
[PATCH] set default owner/group in db.
This patch fixes a bug where the udev database stored empty strings for Owner and Group if they were default. This patch stores the default value into the database if not set otherwise. See example output: crw------- 1 root root 4, 65 Jan 16 11:13 ttyS1 P: /class/tty/ttyS1 N: ttyS1 S: O: root G: root This is a bit of a hack. However, until udev supports setting the o/g values they will be root/root anyway so the database might as well reflect the truth instead of empty strings.
Diffstat (limited to 'udev.h')
-rw-r--r--udev.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/udev.h b/udev.h
index 90aa823939..963f8d2516 100644
--- a/udev.h
+++ b/udev.h
@@ -68,5 +68,7 @@ extern char udev_permissions_filename[PATH_MAX+NAME_MAX];
extern char udev_config_filename[PATH_MAX+NAME_MAX];
extern char udev_rules_filename[PATH_MAX+NAME_MAX];
extern char default_mode_str[NAME_MAX];
+extern char default_owner_str[OWNER_SIZE];
+extern char default_group_str[GROUP_SIZE];
#endif