/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
*/
/*
* glue routine for gss_release_cred
*/
#include <mglueP.h>
#include "gssapiP_generic.h"
#include <stdio.h>
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
{
int j;
if (minor_status == NULL)
return (GSS_S_CALL_INACCESSIBLE_WRITE);
*minor_status = 0;
if (cred_handle == NULL)
return (GSS_S_NO_CRED | GSS_S_CALL_INACCESSIBLE_READ);
/*
* Loop through the union_cred struct, selecting the approprate
* underlying mechanism routine and calling it. At the end,
* release all of the storage taken by the union_cred struct.
*/
return (GSS_S_COMPLETE);
if (GSSINT_CHK_LOOP(union_cred))
return (GSS_S_NO_CRED | GSS_S_CALL_INACCESSIBLE_READ);
*cred_handle = NULL;
for (j = 0; j < union_cred->count; j++) {
if (mech) {
if (mech->gss_release_cred) {
&union_cred->cred_array[j]);
if (temp_status != GSS_S_COMPLETE) {
}
} else
} else
}
return (status);
}