blob: 450c5ed4b167dd9739e206623f6c4830a39e4e7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/*
* imp_name.c --- import_name
*
* $Source$
* $Author$
* $Header$
*
* Copyright 1991 by the Massachusetts Institute of Technology.
* All Rights Reserved.
*
* For copying and distribution information, please see the file
* <krb5/copyright.h>.
*
*/
#include <gssapi.h>
OM_uint32 gss_compare_name(minor_status, name1, name2, name_equal)
OM_uint32 *minor_status;
gss_name_t name1, name2;
int *name_equal;
{
*minor_status = 0;
*name_equal = krb5_principal_compare(name1, name2);
return(GSS_S_COMPLETE);
}
|