summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--auth-krb5.c21
2 files changed, 21 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 87489355c..7a0ec2158 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -14,6 +14,11 @@
14 [configure.ac defines.h] modify previous SCO3 fix to not break Solaris 7 14 [configure.ac defines.h] modify previous SCO3 fix to not break Solaris 7
15 [acconfig.h] remove unused HAVE_REGCOMP 15 [acconfig.h] remove unused HAVE_REGCOMP
16 - (stevesk) openbsd-compat/base64.h: typo in comment 16 - (stevesk) openbsd-compat/base64.h: typo in comment
17 - (bal) OpenBSD CVS Sync
18 - markus@cvs.openbsd.org 2002/02/15 23:54:10
19 [auth-krb5.c]
20 krb5_get_err_text() does not like context==NULL; he@nordu.net via google;
21 ok provos@
17 22
1820020225 2320020225
19 - (bal) Last AIX patch. Moved aix_usrinfo() outside of do_setuserconext() 24 - (bal) Last AIX patch. Moved aix_usrinfo() outside of do_setuserconext()
@@ -7687,4 +7692,4 @@
7687 - Wrote replacements for strlcpy and mkdtemp 7692 - Wrote replacements for strlcpy and mkdtemp
7688 - Released 1.0pre1 7693 - Released 1.0pre1
7689 7694
7690$Id: ChangeLog,v 1.1876 2002/02/26 16:59:58 stevesk Exp $ 7695$Id: ChangeLog,v 1.1877 2002/02/26 17:46:11 mouring Exp $
diff --git a/auth-krb5.c b/auth-krb5.c
index bf2412080..aaf146e76 100644
--- a/auth-krb5.c
+++ b/auth-krb5.c
@@ -2,7 +2,7 @@
2 * Kerberos v5 authentication and ticket-passing routines. 2 * Kerberos v5 authentication and ticket-passing routines.
3 * 3 *
4 * $FreeBSD: src/crypto/openssh/auth-krb5.c,v 1.6 2001/02/13 16:58:04 assar Exp $ 4 * $FreeBSD: src/crypto/openssh/auth-krb5.c,v 1.6 2001/02/13 16:58:04 assar Exp $
5 * $OpenBSD: auth-krb5.c,v 1.4 2002/01/27 15:12:09 markus Exp $ 5 * $OpenBSD: auth-krb5.c,v 1.5 2002/02/15 23:54:10 markus Exp $
6 */ 6 */
7 7
8#include "includes.h" 8#include "includes.h"
@@ -118,9 +118,14 @@ auth_krb5(Authctxt *authctxt, krb5_data *auth, char **client)
118 if (reply.length) 118 if (reply.length)
119 xfree(reply.data); 119 xfree(reply.data);
120 120
121 if (problem) 121 if (problem) {
122 debug("Kerberos v5 authentication failed: %s", 122 if (authctxt->krb5_ctx != NULL)
123 krb5_get_err_text(authctxt->krb5_ctx, problem)); 123 debug("Kerberos v5 authentication failed: %s",
124 krb5_get_err_text(authctxt->krb5_ctx, problem));
125 else
126 debug("Kerberos v5 authentication failed: %d",
127 problem);
128 }
124 129
125 return (ret); 130 return (ret);
126} 131}
@@ -222,8 +227,12 @@ auth_krb5_password(Authctxt *authctxt, const char *password)
222 restore_uid(); 227 restore_uid();
223 228
224 if (problem) { 229 if (problem) {
225 debug("Kerberos password authentication failed: %s", 230 if (authctxt->krb5_ctx != NULL)
226 krb5_get_err_text(authctxt->krb5_ctx, problem)); 231 debug("Kerberos password authentication failed: %s",
232 krb5_get_err_text(authctxt->krb5_ctx, problem));
233 else
234 debug("Kerberos password authentication failed: %d",
235 problem);
227 236
228 krb5_cleanup_proc(authctxt); 237 krb5_cleanup_proc(authctxt);
229 238