=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/gzsig/Attic/ssh.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- src/usr.bin/gzsig/Attic/ssh.c 2014/04/16 05:16:39 1.3 +++ src/usr.bin/gzsig/Attic/ssh.c 2014/08/25 07:50:26 1.4 @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh.c,v 1.3 2014/04/16 05:16:39 miod Exp $ */ +/* $OpenBSD: ssh.c,v 1.4 2014/08/25 07:50:26 doug Exp $ */ /* * ssh.c @@ -252,7 +252,7 @@ MD5_Update(&md, (const u_char *)pass, strlen(pass)); MD5_Final(digest, &md); - memset(pass, 0, strlen(pass)); + explicit_bzero(pass, strlen(pass)); if ((dstate = des3_init(digest, sizeof(digest))) == NULL) return (-1);