summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--auth-krb5.c2
-rw-r--r--auth.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/auth-krb5.c b/auth-krb5.c
index 8377aed10..859492478 100644
--- a/auth-krb5.c
+++ b/auth-krb5.c
@@ -40,7 +40,6 @@ RCSID("$OpenBSD: auth-krb5.c,v 1.15 2003/11/21 11:57:02 djm Exp $");
40#include "auth.h" 40#include "auth.h"
41 41
42#ifdef KRB5 42#ifdef KRB5
43
44#include <krb5.h> 43#include <krb5.h>
45 44
46extern ServerOptions options; 45extern ServerOptions options;
@@ -105,6 +104,7 @@ auth_krb5_password(Authctxt *authctxt, const char *password)
105 104
106 if (problem) 105 if (problem)
107 goto out; 106 goto out;
107
108 problem = krb5_cc_gen_new(authctxt->krb5_ctx, &krb5_fcc_ops, 108 problem = krb5_cc_gen_new(authctxt->krb5_ctx, &krb5_fcc_ops,
109 &authctxt->krb5_fwd_ccache); 109 &authctxt->krb5_fwd_ccache);
110 if (problem) 110 if (problem)
diff --git a/auth.h b/auth.h
index 34afdb492..0be1f88c4 100644
--- a/auth.h
+++ b/auth.h
@@ -123,8 +123,8 @@ void krb5_cleanup_proc(Authctxt *authctxt);
123 123
124#include "auth-pam.h" 124#include "auth-pam.h"
125 125
126void do_authentication(Authctxt *); 126void do_authentication(Authctxt *);
127void do_authentication2(Authctxt *); 127void do_authentication2(Authctxt *);
128 128
129void auth_log(Authctxt *, int, char *, char *); 129void auth_log(Authctxt *, int, char *, char *);
130void userauth_finish(Authctxt *, int, char *); 130void userauth_finish(Authctxt *, int, char *);