From ea7c4ac99d62def3ceb6caa39e2f82b7c8121bbb Mon Sep 17 00:00:00 2001 From: Gary Lockyer Date: Fri, 7 Jun 2019 13:53:58 +1200 Subject: [PATCH] auth auth_log: csbuild unused parm transport_protection MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Fixes csbuild errors. Error: COMPILER_WARNING: auth/auth_log.c: scope_hint: In function ‘log_successful_authz_event_human_readable’ auth/auth_log.c:728:14: warning: unused parameter ‘transport_protection’ [-Wunused-param eter] Signed-off-by: Gary Lockyer Reviewed-by: Andreas Schneider --- auth/auth_log.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/auth/auth_log.c b/auth/auth_log.c index 6c5fac0bf42..60bc6334591 100644 --- a/auth/auth_log.c +++ b/auth/auth_log.c @@ -719,7 +719,6 @@ static void log_successful_authz_event_human_readable( const struct tsocket_address *local, const char *service_description, const char *auth_type, - const char *transport_protection, struct auth_session_info *session_info, int debug_level) { @@ -790,7 +789,6 @@ void log_successful_authz_event( local, service_description, auth_type, - transport_protection, session_info, debug_level); } -- 2.47.3