1 /* -*- mode: c; c-basic-offset: 4; indent-tabs-mode: nil -*- */
2 /*
3 * Copyright 1993 by OpenVision Technologies, Inc.
4 *
5 * Permission to use, copy, modify, distribute, and sell this software
6 * and its documentation for any purpose is hereby granted without fee,
7 * provided that the above copyright notice appears in all copies and
8 * that both that copyright notice and this permission notice appear in
9 * supporting documentation, and that the name of OpenVision not be used
10 * in advertising or publicity pertaining to distribution of the software
11 * without specific, written prior permission. OpenVision makes no
12 * representations about the suitability of this software for any
13 * purpose. It is provided "as is" without express or implied warranty.
14 *
15 * OPENVISION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
16 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
17 * EVENT SHALL OPENVISION BE LIABLE FOR ANY SPECIAL, INDIRECT OR
18 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
19 * USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
20 * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
21 * PERFORMANCE OF THIS SOFTWARE.
22 */
23
24 /*
25 * $Id$
26 */
27
28 #include "gssapiP_krb5.h"
29
30 OM_uint32 KRB5_CALLCONV
krb5_gss_compare_name(OM_uint32 * minor_status,gss_name_t name1,gss_name_t name2,int * name_equal)31 krb5_gss_compare_name(OM_uint32 *minor_status, gss_name_t name1,
32 gss_name_t name2, int *name_equal)
33 {
34 krb5_context context;
35 krb5_error_code code;
36
37 code = krb5_gss_init_context(&context);
38 if (code) {
39 *minor_status = code;
40 return GSS_S_FAILURE;
41 }
42
43 *minor_status = 0;
44 *name_equal = kg_compare_name(context,
45 (krb5_gss_name_t)name1,
46 (krb5_gss_name_t)name2);
47 krb5_free_context(context);
48 return(GSS_S_COMPLETE);
49 }
50