]> andersk Git - moira.git/blobdiff - update/ticket.c
- Don't ifdef out auth_002; it breaks backward compatability.
[moira.git] / update / ticket.c
index 9eb47c7e5916a72e7792286a15c0f08cc4f7699f..438e248c4db4f5b327a5d6c411403b3821d4d47c 100644 (file)
@@ -35,7 +35,7 @@ krb5_context context = NULL;
 static int get_mr_tgt(void);
 #endif
 
-int get_mr_krb5_update_ticket(char *host, krb5_data auth)
+int get_mr_krb5_update_ticket(char *host, krb5_data *auth)
 {
   krb5_auth_context auth_con = NULL;
   krb5_ccache ccache = NULL;
@@ -54,7 +54,7 @@ int get_mr_krb5_update_ticket(char *host, krb5_data auth)
     goto out;
 
   code = krb5_mk_req(context, &auth_con, 0, "host", host, NULL, ccache,
-                    &auth);
+                    auth);
 
  out:
   if (ccache)
This page took 0.031638 seconds and 4 git commands to generate.