]> andersk Git - openssh.git/commitdiff
- mpech@cvs.openbsd.org 2003/02/21 10:34:48
authordjm <djm>
Mon, 24 Feb 2003 01:05:18 +0000 (01:05 +0000)
committerdjm <djm>
Mon, 24 Feb 2003 01:05:18 +0000 (01:05 +0000)
     [auth-krb4.c]
     ...sizeof(&adat.session) is not good here.
     henning@, deraadt@, millert@

ChangeLog
auth-krb4.c

index 224e131191ac31e1b7c2c8f1d1e7f2b45eadcfdd..257b7298f00e5c265089c50d797c5ee5c6e135f1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
    - markus@cvs.openbsd.org 2003/02/21 09:05:53
      [servconf.c]
      print sshd_config filename in debug2 mode.
+   - mpech@cvs.openbsd.org 2003/02/21 10:34:48
+     [auth-krb4.c]
+     ...sizeof(&adat.session) is not good here.
+     henning@, deraadt@, millert@
 
 20030211
  - (djm) Cygwin needs libcrypt too. Patch from vinschen@redhat.com
index b86ce7e49e57d557b9a6833de84d8926a6cd2677..b28df469f74ead57681e4ceadfa9b582eb89373b 100644 (file)
@@ -23,7 +23,7 @@
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: auth-krb4.c,v 1.28 2002/09/26 11:38:43 markus Exp $");
+RCSID("$OpenBSD: auth-krb4.c,v 1.29 2003/02/21 10:34:48 mpech Exp $");
 
 #include "ssh.h"
 #include "ssh1.h"
@@ -271,7 +271,7 @@ auth_krb4(Authctxt *authctxt, KTEXT auth, char **client, KTEXT reply)
                reply->length = r;
 
        /* Clear session key. */
-       memset(&adat.session, 0, sizeof(&adat.session));
+       memset(&adat.session, 0, sizeof(adat.session));
        return (1);
 }
 #endif /* KRB4 */
This page took 0.547654 seconds and 5 git commands to generate.