diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2009-02-28 02:31:50 +0100 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2009-02-28 02:31:50 +0100 |
commit | 28037643bd3275b6567fbfd84feee909cbfb5352 (patch) | |
tree | 0138e2d8d68fbf572221e6aaef1cdb7559c03fea /plugins/ethernet.c | |
parent | c2d1b081ccdd3720ef645bf8dbf82ea4abc752fb (diff) | |
download | connman-28037643bd3275b6567fbfd84feee909cbfb5352.tar.gz connman-28037643bd3275b6567fbfd84feee909cbfb5352.tar.bz2 connman-28037643bd3275b6567fbfd84feee909cbfb5352.zip |
Add priority field to plugin descriptor definition
Diffstat (limited to 'plugins/ethernet.c')
-rw-r--r-- | plugins/ethernet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ethernet.c b/plugins/ethernet.c index 4ef163c6..79ddf2b3 100644 --- a/plugins/ethernet.c +++ b/plugins/ethernet.c @@ -150,4 +150,4 @@ static void ethernet_exit(void) } CONNMAN_PLUGIN_DEFINE(ethernet, "Ethernet interface plugin", VERSION, - ethernet_init, ethernet_exit) + CONNMAN_PLUGIN_PRIORITY_DEFAULT, ethernet_init, ethernet_exit) |