From c9315a55792fb15e9d26f11965edbec8dffd6e3c Mon Sep 17 00:00:00 2001 From: Nick Porter Date: Fri, 3 Jan 2025 20:00:01 +0000 Subject: [PATCH] Handle label only used on TLS builds --- src/main/process.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/process.c b/src/main/process.c index cc8ddd25680ef..478fa7ac6b08f 100644 --- a/src/main/process.c +++ b/src/main/process.c @@ -5702,7 +5702,9 @@ static void event_new_fd(rad_listen_t *this) /* * All sockets: add the FD to the event handler. */ +#ifdef WITH_TLS insert_fd: +#endif if (fr_event_fd_insert(el, 0, this->fd, event_socket_handler, this)) { this->status = RAD_LISTEN_STATUS_KNOWN;