svn commit: r286067 - stable/8/crypto/openssh

Xin LI delphij at FreeBSD.org
Thu Jul 30 10:09:08 UTC 2015


Author: delphij
Date: Thu Jul 30 10:09:07 2015
New Revision: 286067
URL: https://svnweb.freebsd.org/changeset/base/286067

Log:
  Fix a regression introduced with previous OpenSSH by explicitly
  initializing devices_done.
  
  Submitted by:	jkim

Modified:
  stable/8/crypto/openssh/auth2-chall.c

Modified: stable/8/crypto/openssh/auth2-chall.c
==============================================================================
--- stable/8/crypto/openssh/auth2-chall.c	Thu Jul 30 06:14:47 2015	(r286066)
+++ stable/8/crypto/openssh/auth2-chall.c	Thu Jul 30 10:09:07 2015	(r286067)
@@ -131,6 +131,7 @@ kbdint_alloc(const char *devs)
 	kbdintctxt->ctxt = NULL;
 	kbdintctxt->device = NULL;
 	kbdintctxt->nreq = 0;
+	kbdintctxt->devices_done = 0;
 
 	return kbdintctxt;
 }


More information about the svn-src-stable-8 mailing list