summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--auth-krb4.c4
2 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index c37cd63f5..5f0c83713 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -74,6 +74,10 @@
74 - markus@cvs.openbsd.org 2003/02/21 09:05:53 74 - markus@cvs.openbsd.org 2003/02/21 09:05:53
75 [servconf.c] 75 [servconf.c]
76 print sshd_config filename in debug2 mode. 76 print sshd_config filename in debug2 mode.
77 - mpech@cvs.openbsd.org 2003/02/21 10:34:48
78 [auth-krb4.c]
79 ...sizeof(&adat.session) is not good here.
80 henning@, deraadt@, millert@
77 81
7820030211 8220030211
79 - (djm) Cygwin needs libcrypt too. Patch from vinschen@redhat.com 83 - (djm) Cygwin needs libcrypt too. Patch from vinschen@redhat.com
@@ -1174,4 +1178,4 @@
1174 save auth method before monitor_reset_key_state(); bugzilla bug #284; 1178 save auth method before monitor_reset_key_state(); bugzilla bug #284;
1175 ok provos@ 1179 ok provos@
1176 1180
1177$Id: ChangeLog,v 1.2614 2003/02/24 01:04:33 djm Exp $ 1181$Id: ChangeLog,v 1.2615 2003/02/24 01:05:18 djm Exp $
diff --git a/auth-krb4.c b/auth-krb4.c
index b86ce7e49..b28df469f 100644
--- a/auth-krb4.c
+++ b/auth-krb4.c
@@ -23,7 +23,7 @@
23 */ 23 */
24 24
25#include "includes.h" 25#include "includes.h"
26RCSID("$OpenBSD: auth-krb4.c,v 1.28 2002/09/26 11:38:43 markus Exp $"); 26RCSID("$OpenBSD: auth-krb4.c,v 1.29 2003/02/21 10:34:48 mpech Exp $");
27 27
28#include "ssh.h" 28#include "ssh.h"
29#include "ssh1.h" 29#include "ssh1.h"
@@ -271,7 +271,7 @@ auth_krb4(Authctxt *authctxt, KTEXT auth, char **client, KTEXT reply)
271 reply->length = r; 271 reply->length = r;
272 272
273 /* Clear session key. */ 273 /* Clear session key. */
274 memset(&adat.session, 0, sizeof(&adat.session)); 274 memset(&adat.session, 0, sizeof(adat.session));
275 return (1); 275 return (1);
276} 276}
277#endif /* KRB4 */ 277#endif /* KRB4 */