From: Alan T. DeKok Date: Wed, 10 Feb 2021 15:03:21 +0000 (-0500) Subject: don't copy listener X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=22eb1482cc933ad8dcd1cf1318b86fdfc9718322;p=thirdparty%2Ffreeradius-server.git don't copy listener child requests should be internal, and should have no idea about external networks --- diff --git a/src/lib/unlang/io.c b/src/lib/unlang/io.c index 4beb1badf4e..6c0df20a251 100644 --- a/src/lib/unlang/io.c +++ b/src/lib/unlang/io.c @@ -108,7 +108,6 @@ request_t *unlang_io_subrequest_alloc(request_t *parent, fr_dict_t const *namesp child->async = talloc_zero(child, fr_async_t); #define COPY_FIELD(_x) child->async->_x = parent->async->_x - COPY_FIELD(listen); COPY_FIELD(recv_time); fr_assert(request_is_internal(child));