+Tue Mar 3 09:24:13 CET 2009 Daniel Veillard <veillard@redhat.com>
+
+ * qemud/qemud.c: fix qemu+tls handshake negotiation, patch by
+ Chris Lalancette
+
Mon Mar 2 20:24:00 GMT 2009 Daniel P. Berrange <berrange@redhat.com>
* python/.cvsignore: Ignore generated.stamp
/* Begin the TLS handshake. */
ret = gnutls_handshake (client->tlssession);
if (ret == 0) {
+ client->handshake = 0;
+
/* Unlikely, but ... Next step is to check the certificate. */
if (remoteCheckAccess (client) == -1)
goto cleanup;
/* Continue the handshake. */
ret = gnutls_handshake (client->tlssession);
if (ret == 0) {
+ client->handshake = 0;
+
/* Finished. Next step is to check the certificate. */
if (remoteCheckAccess (client) == -1)
qemudDispatchClientFailure(client);