remove gss_any_t definition, will patch this into Heimdal
[mech_eap.orig] / add_cred.c
index 0332150..c831f4a 100644 (file)
  * SUCH DAMAGE.
  */
 
+/*
+ * Wrapper for acquiring a credential handle.
+ */
+
 #include "gssapiP_eap.h"
 
 /*
@@ -54,6 +58,7 @@ gss_add_cred(OM_uint32 *minor,
     OM_uint32 time_req, time_rec = 0;
     gss_OID_set_desc mechs;
 
+    *minor = 0;
     *output_cred_handle = GSS_C_NO_CREDENTIAL;
 
     if (cred_usage == GSS_C_ACCEPT)
@@ -64,14 +69,15 @@ gss_add_cred(OM_uint32 *minor,
     mechs.count = 1;
     mechs.elements = desired_mech;
 
-    major = gss_acquire_cred(minor,
-                             desired_name,
-                             time_req,
-                             &mechs,
-                             cred_usage,
-                             output_cred_handle,
-                             actual_mechs,
-                             &time_rec);
+    major = gssEapAcquireCred(minor,
+                              desired_name,
+                              GSS_C_NO_BUFFER,
+                              time_req,
+                              &mechs,
+                              cred_usage,
+                              output_cred_handle,
+                              actual_mechs,
+                              &time_rec);
 
     if (initiator_time_rec != NULL)
         *initiator_time_rec = time_rec;