summaryrefslogtreecommitdiff
path: root/auth.h
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2005-09-14 12:45:47 +0000
committerColin Watson <cjwatson@debian.org>2005-09-14 12:45:47 +0000
commit9b71add4cecf753c45f5fbd6ff0913bc95b3e95d (patch)
treed4ea8fdb30c7949c6433f5277c39548ea579d4dc /auth.h
parented07bcbea56007ab5b218ddf3aa6a7d4e21966e0 (diff)
parent16704d57999d987fb8d9ba53379841a79f016d67 (diff)
Merge 4.2p1 to the trunk.
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