8b8d3ff6c1
The original mdev patch was buggy. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 lines
489 B
Diff
13 lines
489 B
Diff
--- busybox-1.14.0/util-linux/mdev.c Tue Apr 14 23:23:04 2009
|
|
+++ busybox-1.14.0-mdev/util-linux/mdev.c Mon May 4 19:58:47 2009
|
|
@@ -181,7 +181,8 @@
|
|
* the rest of fields unless keep_matching == 1 */
|
|
|
|
/* 2nd field: uid:gid - device ownership */
|
|
- parse_chown_usergroup_or_die(&ugid, tokens[1]);
|
|
+ if (get_uidgid(&ugid, tokens[1], 1) == 0)
|
|
+ bb_error_msg("unknown user/group %s", tokens[1]);
|
|
|
|
/* 3rd field: mode - device permissions */
|
|
mode = strtoul(tokens[2], NULL, 8);
|