aboutsummaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorRuss Allbery <rra@stanford.edu>2008-02-07 00:09:11 +0000
committerRuss Allbery <rra@stanford.edu>2008-02-07 00:09:11 +0000
commitf9e41d036aebc03adc2a03a956f219fc827e2cdd (patch)
treeefd9a36362d05e153244c317b8ca3f7eda012568 /client
parent5cd3a6fe3988677d865d666aeefd3ed2f2e549c5 (diff)
Add UNUSED markers for older versions of Kerberos.
Diffstat (limited to 'client')
-rw-r--r--client/error.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/error.c b/client/error.c
index 22e7e5b..982c845 100644
--- a/client/error.c
+++ b/client/error.c
@@ -45,7 +45,7 @@ static const char error_unknown[] = "unknown error";
** fixed message.
*/
static const char *
-get_error(krb5_context ctx, krb5_error_code code)
+get_error(krb5_context ctx UNUSED, krb5_error_code code)
{
const char *msg = NULL;
@@ -69,7 +69,7 @@ get_error(krb5_context ctx, krb5_error_code code)
** Free an error string if necessary.
*/
static void
-free_error(krb5_context ctx, const char *msg)
+free_error(krb5_context ctx UNUSED, const char *msg)
{
if (msg == error_unknown)
return;