From: Gary Lockyer Date: Fri, 7 Jun 2019 01:53:58 +0000 (+1200) Subject: auth auth_log: csbuild unused parm transport_protection X-Git-Tag: ldb-2.0.5~394 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ea7c4ac99d62def3ceb6caa39e2f82b7c8121bbb;p=thirdparty%2Fsamba.git auth auth_log: csbuild unused parm transport_protection 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 --- 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); }