diff options
author | Marc Hoersken <info@marc-hoersken.de> | 2015-05-01 09:39:34 +0200 |
---|---|---|
committer | Marc Hoersken <info@marc-hoersken.de> | 2015-05-01 09:39:34 +0200 |
commit | 4bb8bad964f7ce84866f67054f8fae431ed45136 (patch) | |
tree | cd02cb20341fa0057a392c1839c51b37e1b7e6a9 | |
parent | b6c9f5b7aed047a5f5d4eaec9f71780404d18d3d (diff) |
Bug born in changes made several days ago 9a91e80.
Commit: https://github.com/bagder/curl/commit/926cb9f
Reported-by: Ray Satiro
-rw-r--r-- | lib/vtls/schannel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vtls/schannel.c b/lib/vtls/schannel.c index a42c88da6..3cd21d208 100644 --- a/lib/vtls/schannel.c +++ b/lib/vtls/schannel.c @@ -405,7 +405,7 @@ schannel_connect_step2(struct connectdata *conn, int sockindex) /* check if the handshake needs to be continued */ if(sspi_status == SEC_I_CONTINUE_NEEDED || sspi_status == SEC_E_OK) { - for(i = 0; i < 2; i++) { + for(i = 0; i < 3; i++) { /* search for handshake tokens that need to be send */ if(outbuf[i].BufferType == SECBUFFER_TOKEN && outbuf[i].cbBuffer > 0) { infof(data, "schannel: sending next handshake data: " |