summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnders F Björklund <anders.f.bjorklund@gmail.com>2017-04-24 18:07:11 +0200
committerThomas Thorne <TafThorne@GoogleMail.com>2017-08-08 08:08:56 +0100
commitbcf79b47d398486d2cdd61e80162aecde54bb796 (patch)
tree26fad7d42f52eb869bae6bc34f183aae84351fa8
parentb04da769739ea7ff082a8e610610aa5c03ed7c84 (diff)
downloaddistcc-git-bcf79b47d398486d2cdd61e80162aecde54bb796.tar.gz
Avoid compilation warning when enabling auth
-rw-r--r--src/auth_common.c6
1 files changed, 6 insertions, 0 deletions
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;
}
/*