summaryrefslogtreecommitdiffstats
path: root/auth.h
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2005-07-07 11:50:20 +1000
committerDarren Tucker <dtucker@zip.com.au>2005-07-07 11:50:20 +1000
commita916d143a16c59a6bc82df5e1d6b046e17d31848 (patch)
treee1d10bb44cf7af70845fbb927f2b8ed92e4f1468 /auth.h
parentf92c0794ec9162f4e0d5291fe58e4fcb5a00f6d3 (diff)
- [auth-krb5.c auth.h gss-serv-krb5.c] Move KRB5CCNAME generation for the MIT
Kerberos code path into a common function and expand mkstemp template to be consistent with the rest of OpenSSH. From sxw at inf.ed.ac.uk, ok djm@
Diffstat (limited to 'auth.h')
-rw-r--r--auth.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/auth.h b/auth.h
index bf47b9a6..8b814ba6 100644
--- a/auth.h
+++ b/auth.h
@@ -191,4 +191,9 @@ int sys_auth_passwd(Authctxt *, const char *);
#define AUTH_FAIL_MSG "Too many authentication failures for %.100s"
#define SKEY_PROMPT "\nS/Key Password: "
+
+#if defined(KRB5) && !defined(HEIMDAL)
+#include <krb5.h>
+krb5_error_code ssh_krb5_cc_gen(krb5_context, krb5_ccache *);
+#endif
#endif