mirror of
https://github.com/systemd/systemd.git
synced 2025-06-13 03:17:20 +03:00
network,udev: explicitly declare 'conditions' is a list
This commit is contained in:
parent
7bb55ed099
commit
1beabe08d6
@ -81,7 +81,7 @@ typedef struct NetDev {
|
|||||||
|
|
||||||
char *filename;
|
char *filename;
|
||||||
|
|
||||||
Condition *conditions;
|
LIST_HEAD(Condition, conditions);
|
||||||
|
|
||||||
NetDevState state;
|
NetDevState state;
|
||||||
NetDevKind kind;
|
NetDevKind kind;
|
||||||
|
@ -97,7 +97,7 @@ struct Network {
|
|||||||
char **match_driver;
|
char **match_driver;
|
||||||
char **match_type;
|
char **match_type;
|
||||||
char **match_name;
|
char **match_name;
|
||||||
Condition *conditions;
|
LIST_HEAD(Condition, conditions);
|
||||||
|
|
||||||
char *description;
|
char *description;
|
||||||
|
|
||||||
|
@ -40,7 +40,7 @@ struct link_config {
|
|||||||
char **match_driver;
|
char **match_driver;
|
||||||
char **match_type;
|
char **match_type;
|
||||||
char **match_name;
|
char **match_name;
|
||||||
Condition *conditions;
|
LIST_HEAD(Condition, conditions);
|
||||||
|
|
||||||
char *description;
|
char *description;
|
||||||
struct ether_addr *mac;
|
struct ether_addr *mac;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user