summaryrefslogtreecommitdiff
path: root/auth.h
diff options
context:
space:
mode:
Diffstat (limited to 'auth.h')
-rw-r--r--auth.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/auth.h b/auth.h
index d1399032e..f3a31c446 100644
--- a/auth.h
+++ b/auth.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: auth.h,v 1.50 2004/05/23 23:59:53 dtucker Exp $ */ 1/* $OpenBSD: auth.h,v 1.51 2005/06/06 11:20:36 djm Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2000 Markus Friedl. All rights reserved. 4 * Copyright (c) 2000 Markus Friedl. All rights reserved.
@@ -164,7 +164,6 @@ char *get_challenge(Authctxt *);
164int verify_response(Authctxt *, const char *); 164int verify_response(Authctxt *, const char *);
165void abandon_challenge_response(Authctxt *); 165void abandon_challenge_response(Authctxt *);
166 166
167char *expand_filename(const char *, struct passwd *);
168char *authorized_keys_file(struct passwd *); 167char *authorized_keys_file(struct passwd *);
169char *authorized_keys_file2(struct passwd *); 168char *authorized_keys_file2(struct passwd *);
170 169
@@ -193,4 +192,9 @@ int sys_auth_passwd(Authctxt *, const char *);
193#define AUTH_FAIL_MSG "Too many authentication failures for %.100s" 192#define AUTH_FAIL_MSG "Too many authentication failures for %.100s"
194 193
195#define SKEY_PROMPT "\nS/Key Password: " 194#define SKEY_PROMPT "\nS/Key Password: "
195
196#if defined(KRB5) && !defined(HEIMDAL)
197#include <krb5.h>
198krb5_error_code ssh_krb5_cc_gen(krb5_context, krb5_ccache *);
199#endif
196#endif 200#endif