Import Upstream version 1.8.5
[hcoop/debian/openafs.git] / src / crypto / rfc3961 / context.c
1 /* Functions for handling the Kerberos context. For now, these are no-ops */
2
3 #include <krb5_locl.h>
4
5 int
6 krb5_init_context(krb5_context *ctx) {
7 return 0;
8 }
9
10 void
11 krb5_free_context(krb5_context ctx)
12 {
13 return;
14 }
15
16 void
17 krb5_set_error_message(krb5_context ctx, krb5_error_code ret, const char *fmt,
18 ...)
19 {
20 return;
21 }
22
23 krb5_error_code
24 krb5_abortx(krb5_context ctx, const char *fmt, ...)
25 {
26 return 0;
27 }