1
0
mirror of https://github.com/systemd/systemd.git synced 2025-03-08 08:58:27 +03:00

network,udev: explicitly declare 'conditions' is a list

This commit is contained in:
Yu Watanabe 2019-03-24 00:27:09 +09:00
parent 7bb55ed099
commit 1beabe08d6
3 changed files with 3 additions and 3 deletions

View File

@ -81,7 +81,7 @@ typedef struct NetDev {
char *filename;
Condition *conditions;
LIST_HEAD(Condition, conditions);
NetDevState state;
NetDevKind kind;

View File

@ -97,7 +97,7 @@ struct Network {
char **match_driver;
char **match_type;
char **match_name;
Condition *conditions;
LIST_HEAD(Condition, conditions);
char *description;

View File

@ -40,7 +40,7 @@ struct link_config {
char **match_driver;
char **match_type;
char **match_name;
Condition *conditions;
LIST_HEAD(Condition, conditions);
char *description;
struct ether_addr *mac;