From bcf79b47d398486d2cdd61e80162aecde54bb796 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anders=20F=20Bj=C3=B6rklund?= Date: Mon, 24 Apr 2017 18:07:11 +0200 Subject: Avoid compilation warning when enabling auth --- src/auth_common.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/auth_common.c b/src/auth_common.c index 471691b..d4f28a6 100644 --- a/src/auth_common.c +++ b/src/auth_common.c @@ -64,6 +64,9 @@ void dcc_gssapi_status_to_log(OM_uint32 status_code, int status_type) { gss_release_buffer(&minor_status, &status_string); } while (message_ctx != 0); + + (void) major_status; + (void) minor_status; } /* @@ -100,6 +103,9 @@ void dcc_gssapi_cleanup(gss_buffer_desc *input_tok, rs_log_error("Failed to release name."); } } + + (void) major_status; + (void) minor_status; } /* -- cgit v1.2.1