Displaying 1 result from an estimated 1 matches for "skey_prompt".
2005 Jul 06
0
[PATCH] Simplify Kerberos credentials cache code
...==============================
RCS file: /cvs/openssh/auth.h,v
retrieving revision 1.67
diff -u -r1.67 auth.h
--- auth.h 16 Jun 2005 03:18:35 -0000 1.67
+++ auth.h 6 Jul 2005 10:31:51 -0000
@@ -191,4 +191,9 @@
#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
Index: gss-serv-krb5.c
===================================================================
RCS file: /cvs/openssh/...