1. 10 May, 2014 1 commit
  2. 09 May, 2014 14 commits
  3. 08 May, 2014 2 commits
  4. 07 May, 2014 6 commits
  5. 06 May, 2014 9 commits
  6. 05 May, 2014 6 commits
  7. 04 May, 2014 2 commits
    • Daniel Stenberg's avatar
      schannel: don't use the connect-timeout during send · a18a2ba0
      Daniel Stenberg authored
      As there's a default connection timeout and this wrongly used the
      connection timeout during a transfer after the connection is completed,
      this function would trigger timeouts during transfers erroneously.
      
      Bug: http://curl.haxx.se/bug/view.cgi?id=1352
      Figured-out-by: Radu Simionescu
      a18a2ba0
    • Daniel Stenberg's avatar
      mprintf: allow %.s with data not being zero terminated · 812da419
      Daniel Stenberg authored
      If the precision is indeed shorter than the string, don't strlen() to
      find the end because that's not how the precision operator works.
      
      I also added a unit test for curl_msnprintf to make sure this works and
      that the fix doesn't a few other basic use cases. I found a POSIX
      compliance problem that I marked TODO in the unit test, and I figure we
      need to add more tests in the future.
      
      Reported-by: Török Edwin
      812da419