From 6672bc2a378c7e6382231475c138977ab557a07b Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Thu, 3 Oct 2019 12:25:34 -0500 Subject: [PATCH] station: record dependency on netconfig module The netconfig module must be initialized (netconfig_list, for example) before station module can be used, record this to ensure that happens. --- src/station.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/station.c b/src/station.c index 0666287b..eed3a7f7 100644 --- a/src/station.c +++ b/src/station.c @@ -3190,3 +3190,4 @@ static void station_exit(void) } IWD_MODULE(station, station_init, station_exit) +IWD_MODULE_DEPENDS(station, netconfig)