diff options
Diffstat (limited to 'auth.h')
-rw-r--r-- | auth.h | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -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 *); | |||
164 | int verify_response(Authctxt *, const char *); | 164 | int verify_response(Authctxt *, const char *); |
165 | void abandon_challenge_response(Authctxt *); | 165 | void abandon_challenge_response(Authctxt *); |
166 | 166 | ||
167 | char *expand_filename(const char *, struct passwd *); | ||
168 | char *authorized_keys_file(struct passwd *); | 167 | char *authorized_keys_file(struct passwd *); |
169 | char *authorized_keys_file2(struct passwd *); | 168 | char *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> | ||
198 | krb5_error_code ssh_krb5_cc_gen(krb5_context, krb5_ccache *); | ||
199 | #endif | ||
196 | #endif | 200 | #endif |