1. 03 Aug, 2015 1 commit
  2. 02 Aug, 2015 1 commit
    • Daniel Stenberg's avatar
      SSH: three state machine fixups · c4eb10e2
      Daniel Stenberg authored
      The SSH state machine didn't clear the 'rc' variable appropriately in a
      two places which prevented it from looping the way it should. And it
      lacked an 'else' statement that made it possible to erroneously get
      stuck in the SSH_AUTH_AGENT state.
      
      Reported-by: Tim Stack
      
      Closes #357
      c4eb10e2
  3. 01 Aug, 2015 5 commits
  4. 31 Jul, 2015 4 commits
  5. 30 Jul, 2015 6 commits
  6. 29 Jul, 2015 4 commits
  7. 28 Jul, 2015 7 commits
  8. 26 Jul, 2015 5 commits
  9. 25 Jul, 2015 5 commits
  10. 24 Jul, 2015 1 commit
    • Michael Kaufmann's avatar
      HTTP: ignore "Content-Encoding: compress" · c5d060ca
      Michael Kaufmann authored
      Currently, libcurl rejects responses with "Content-Encoding: compress"
      when CURLOPT_ACCEPT_ENCODING is set to "". I think that libcurl should
      treat the Content-Encoding "compress" the same as other
      Content-Encodings that it does not support, e.g. "bzip2". That means
      just ignoring it.
      c5d060ca
  11. 23 Jul, 2015 1 commit
    • Marcel Raad's avatar
      openssl: work around MSVC warning · 98835eed
      Marcel Raad authored
      MSVC 12 complains:
      
      lib\vtls\openssl.c(1554): warning C4701: potentially uninitialized local
      variable 'verstr' used It's a false positive, but as it's normally not,
      I have enabled warning-as-error for that warning.
      98835eed