From 548fc1f0273dc01aa221dfd8c590a673a7ec3874 Mon Sep 17 00:00:00 2001 From: zacheiss Date: Wed, 25 Jul 2007 15:38:48 +0000 Subject: [PATCH] Fix warning. --- lib/mr_auth.c | 2 +- update/ticket.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/mr_auth.c b/lib/mr_auth.c index dadfb82e..4a5a89c7 100644 --- a/lib/mr_auth.c +++ b/lib/mr_auth.c @@ -127,7 +127,7 @@ int mr_krb5_auth(char *prog) if (problem) goto out; - problem = krb5_mk_req(context, &auth_con, NULL, MOIRA_SNAME, host, NULL, + problem = krb5_mk_req(context, &auth_con, 0, MOIRA_SNAME, host, NULL, ccache, &auth); if (problem) goto out; diff --git a/update/ticket.c b/update/ticket.c index b886631c..77e2b1c1 100644 --- a/update/ticket.c +++ b/update/ticket.c @@ -45,7 +45,7 @@ int get_mr_krb5_update_ticket(char *host, krb5_data auth) if (code) goto out; - code = krb5_mk_req(context, &auth_con, NULL, "host", host, NULL, ccache, + code = krb5_mk_req(context, &auth_con, 0, "host", host, NULL, ccache, &auth); out: -- 2.45.2