]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
don't copy listener
authorAlan T. DeKok <aland@freeradius.org>
Wed, 10 Feb 2021 15:03:21 +0000 (10:03 -0500)
committerAlan T. DeKok <aland@freeradius.org>
Wed, 10 Feb 2021 15:03:29 +0000 (10:03 -0500)
child requests should be internal, and should have no idea
about external networks

src/lib/unlang/io.c

index 4beb1badf4e61d985989063596062b2c3467beb3..6c0df20a25172bfd87279f1eb6d751dfb7ac6f61 100644 (file)
@@ -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));