From bcabb2732bb547b387c6790714cec86cfcf19d61 Mon Sep 17 00:00:00 2001 From: Denis Date: Thu, 14 Dec 2023 23:34:20 +0100 Subject: [PATCH] honor settings in output server --- stray_ally.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stray_ally.c b/stray_ally.c index 4bbbef9..3ab735a 100644 --- a/stray_ally.c +++ b/stray_ally.c @@ -48,6 +48,8 @@ int main(int argc, char ** argv) { } }; + load_out_config(&dev_out_thread_data.settings, configuration_file); + pthread_t dev_out_thread; const int dev_out_thread_creation = pthread_create(&dev_out_thread, NULL, dev_out_thread_func, (void*)(&dev_out_thread_data)); if (dev_out_thread_creation != 0) {