]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
correct documentation
authorAlan T. DeKok <aland@freeradius.org>
Thu, 6 Jul 2017 21:37:40 +0000 (17:37 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Fri, 7 Jul 2017 15:53:05 +0000 (11:53 -0400)
src/main/request.c

index 6441f894c7b5f5622211849e836d2ac0cf4982cf..ac28f458e98effd319cdd307e51f47ecc0271edf 100644 (file)
@@ -38,8 +38,7 @@ struct request_data_t {
        int             unique_int;             //!< Alternative key to lookup request data.
        void            *opaque;                //!< Opaque data.
        bool            free_on_replace;        //!< Whether to talloc_free(opaque) when the request data is removed.
-       bool            free_on_parent;         //!< Whether to talloc_free(opaque) when the parent of the request
-                                               //!< data is freed.
+       bool            free_on_parent;         //!< Whether to talloc_free(opaque) when the request is freed
        bool            persist;                //!< Whether this data should be transfered to a session_entry_t
                                                //!< after we're done processing this request.
 };