]> andersk Git - moira.git/commitdiff
Fix warning.
authorzacheiss <zacheiss>
Wed, 25 Jul 2007 15:38:48 +0000 (15:38 +0000)
committerzacheiss <zacheiss>
Wed, 25 Jul 2007 15:38:48 +0000 (15:38 +0000)
lib/mr_auth.c
update/ticket.c

index dadfb82ea236825e5c6a3ed9ecef38e5cd223ead..4a5a89c7e3abb09048f76e0c131cb75666d77829 100644 (file)
@@ -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;
index b886631cb099f451c3efe81617c88dd1dd0c77ae..77e2b1c1ef4ddc2d7b720410f0909ef51efa8e3e 100644 (file)
@@ -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:
This page took 0.116368 seconds and 5 git commands to generate.