From bb181a46bc4e24135c6883f98ba9048115c2cff5 Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Sun, 26 Jan 2014 22:45:10 -0500 Subject: [PATCH] Fix: relayd: initialize lttcomm inet Not doing so does not take into account env. var. timeouts. Signed-off-by: Mathieu Desnoyers --- src/bin/lttng-relayd/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/lttng-relayd/main.c b/src/bin/lttng-relayd/main.c index 53f1b49ce..ba3641448 100644 --- a/src/bin/lttng-relayd/main.c +++ b/src/bin/lttng-relayd/main.c @@ -2112,6 +2112,7 @@ int main(int argc, char **argv) /* Initialize communication library */ lttcomm_init(); + lttcomm_inet_init(); /* Setup the dispatcher thread */ ret = pthread_create(&dispatcher_thread, NULL, -- 2.34.1