chiark
/
gitweb
/
~ianmdlvl
/
elogind.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
e97717b
)
fix "subsytem" typo
author
Sergey Vlasov
<vsu@altlinux.ru>
Sun, 3 Sep 2006 12:13:11 +0000
(14:13 +0200)
committer
Kay Sievers
<kay.sievers@suse.de>
Sun, 3 Sep 2006 12:13:11 +0000
(14:13 +0200)
udevtrigger.c
patch
|
blob
|
history
diff --git
a/udevtrigger.c
b/udevtrigger.c
index
2e001db
..
bf5ec25
100644
(file)
--- a/
udevtrigger.c
+++ b/
udevtrigger.c
@@
-71,8
+71,8
@@
LIST_HEAD(device_first_list);
LIST_HEAD(device_default_list);
LIST_HEAD(device_last_list);
LIST_HEAD(device_default_list);
LIST_HEAD(device_last_list);
-LIST_HEAD(filter_subsytem_match_list);
-LIST_HEAD(filter_subsytem_nomatch_list);
+LIST_HEAD(filter_subsy
s
tem_match_list);
+LIST_HEAD(filter_subsy
s
tem_nomatch_list);
LIST_HEAD(filter_attr_match_list);
LIST_HEAD(filter_attr_nomatch_list);
LIST_HEAD(filter_attr_match_list);
LIST_HEAD(filter_attr_nomatch_list);
@@
-176,13
+176,13
@@
static int subsystem_filtered(const char *subsystem)
struct name_entry *loop_name;
/* skip devices matching the listed subsystems */
struct name_entry *loop_name;
/* skip devices matching the listed subsystems */
- list_for_each_entry(loop_name, &filter_subsytem_nomatch_list, node)
+ list_for_each_entry(loop_name, &filter_subsy
s
tem_nomatch_list, node)
if (fnmatch(loop_name->name, subsystem, 0) == 0)
return 1;
/* skip devices not matching the listed subsystems */
if (fnmatch(loop_name->name, subsystem, 0) == 0)
return 1;
/* skip devices not matching the listed subsystems */
- if (!list_empty(&filter_subsytem_match_list)) {
- list_for_each_entry(loop_name, &filter_subsytem_match_list, node)
+ if (!list_empty(&filter_subsy
s
tem_match_list)) {
+ list_for_each_entry(loop_name, &filter_subsy
s
tem_match_list, node)
if (fnmatch(loop_name->name, subsystem, 0) == 0)
return 0;
return 1;
if (fnmatch(loop_name->name, subsystem, 0) == 0)
return 0;
return 1;
@@
-501,10
+501,10
@@
int main(int argc, char *argv[], char *envp[])
failed = 1;
break;
case 's':
failed = 1;
break;
case 's':
- name_list_add(&filter_subsytem_match_list, optarg, 0);
+ name_list_add(&filter_subsy
s
tem_match_list, optarg, 0);
break;
case 'S':
break;
case 'S':
- name_list_add(&filter_subsytem_nomatch_list, optarg, 0);
+ name_list_add(&filter_subsy
s
tem_nomatch_list, optarg, 0);
break;
case 'a':
name_list_add(&filter_attr_match_list, optarg, 0);
break;
case 'a':
name_list_add(&filter_attr_match_list, optarg, 0);
@@
-542,8
+542,8
@@
int main(int argc, char *argv[], char *envp[])
exec_lists();
exit:
exec_lists();
exit:
- name_list_cleanup(&filter_subsytem_match_list);
- name_list_cleanup(&filter_subsytem_nomatch_list);
+ name_list_cleanup(&filter_subsy
s
tem_match_list);
+ name_list_cleanup(&filter_subsy
s
tem_nomatch_list);
name_list_cleanup(&filter_attr_match_list);
name_list_cleanup(&filter_attr_nomatch_list);
name_list_cleanup(&filter_attr_match_list);
name_list_cleanup(&filter_attr_nomatch_list);