summaryrefslogtreecommitdiffstats
path: root/discover/device-handler.c
diff options
context:
space:
mode:
Diffstat (limited to 'discover/device-handler.c')
-rw-r--r--discover/device-handler.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/discover/device-handler.c b/discover/device-handler.c
index 94a3f1c..f1270c8 100644
--- a/discover/device-handler.c
+++ b/discover/device-handler.c
@@ -1563,6 +1563,10 @@ static void device_handler_update_lang(const char *lang)
static int device_handler_init_sources(struct device_handler *handler)
{
/* init our device sources: udev, network and user events */
+ handler->user_event = user_event_init(handler, handler->waitset);
+ if (!handler->user_event)
+ return -1;
+
handler->network = network_init(handler, handler->waitset,
handler->dry_run);
if (!handler->network)
@@ -1572,10 +1576,6 @@ static int device_handler_init_sources(struct device_handler *handler)
if (!handler->udev)
return -1;
- handler->user_event = user_event_init(handler, handler->waitset);
- if (!handler->user_event)
- return -1;
-
return 0;
}
OpenPOWER on IntegriCloud