From 87e45c13276c771ae797eb84fa1e42c36cb8cde2 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 c32ea815d..506bbc6fb 100644 --- a/src/bin/lttng-relayd/main.c +++ b/src/bin/lttng-relayd/main.c @@ -2881,6 +2881,7 @@ int main(int argc, char **argv) /* Initialize communication library */ lttcomm_init(); + lttcomm_inet_init(); relay_ctx = zmalloc(sizeof(struct relay_local_data)); if (!relay_ctx) { -- 2.34.1