From: Arran Cudbard-Bell Date: Tue, 4 Oct 2022 04:47:46 +0000 (-0400) Subject: Not enabled if we don't have any request X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b2caf485336967b4e02fcec82cc475b7dcc3cc70;p=thirdparty%2Ffreeradius-server.git Not enabled if we don't have any request --- diff --git a/src/lib/server/log.h b/src/lib/server/log.h index 528ad312102..99358fc03c8 100644 --- a/src/lib/server/log.h +++ b/src/lib/server/log.h @@ -97,7 +97,7 @@ extern size_t log_destination_table_len; #define debug_enabled(_type, _lvl) (((_type & L_DBG) != 0) && (_lvl <= fr_debug_lvl)) -bool log_rdebug_enabled(fr_log_lvl_t lvl, request_t const *request) CC_HINT(nonnull); +bool log_rdebug_enabled(fr_log_lvl_t lvl, request_t const *request); void vlog_request(fr_log_type_t type, fr_log_lvl_t lvl, request_t *request, char const *file, int line,