1*0Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI"
2*0Sstevel@tonic-gate
3*0Sstevel@tonic-gate /*
4*0Sstevel@tonic-gate * WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
5*0Sstevel@tonic-gate *
6*0Sstevel@tonic-gate * Openvision retains the copyright to derivative works of
7*0Sstevel@tonic-gate * this source code. Do *NOT* create a derivative of this
8*0Sstevel@tonic-gate * source code before consulting with your legal department.
9*0Sstevel@tonic-gate * Do *NOT* integrate *ANY* of this source code into another
10*0Sstevel@tonic-gate * product before consulting with your legal department.
11*0Sstevel@tonic-gate *
12*0Sstevel@tonic-gate * For further information, read the top-level Openvision
13*0Sstevel@tonic-gate * copyright which is contained in the top-level MIT Kerberos
14*0Sstevel@tonic-gate * copyright.
15*0Sstevel@tonic-gate *
16*0Sstevel@tonic-gate * WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
17*0Sstevel@tonic-gate *
18*0Sstevel@tonic-gate */
19*0Sstevel@tonic-gate
20*0Sstevel@tonic-gate
21*0Sstevel@tonic-gate #include <krb5.h>
22*0Sstevel@tonic-gate #include <kadm5/admin.h>
23*0Sstevel@tonic-gate #include "client_internal.h"
24*0Sstevel@tonic-gate
_kadm5_check_handle(void * handle)25*0Sstevel@tonic-gate int _kadm5_check_handle(void *handle)
26*0Sstevel@tonic-gate {
27*0Sstevel@tonic-gate CHECK_HANDLE(handle);
28*0Sstevel@tonic-gate return 0;
29*0Sstevel@tonic-gate }
30