Re: [Qemu-devel] [PATCH] io: fix check for handshake completion in TLS test

2017-08-29 Thread Eric Blake
On 08/29/2017 11:40 AM, Daniel P. Berrange wrote: > The TLS I/O channel test had mistakenly used && instead > of || when checking for handshake completion. As a > result it could terminate the handshake process before > it had actually completed. This was harmless before but > changes in GNUTLS 3.6

[Qemu-devel] [PATCH] io: fix check for handshake completion in TLS test

2017-08-29 Thread Daniel P. Berrange
The TLS I/O channel test had mistakenly used && instead of || when checking for handshake completion. As a result it could terminate the handshake process before it had actually completed. This was harmless before but changes in GNUTLS 3.6.0 exposed this bug and caused the test suite to fail. Sign