Skip to content
  1. Aug 24, 2018
    • Marcel Raad's avatar
      curl_threads: silence bad-function-cast warning · edfaf5a2
      Marcel Raad authored
      As uintptr_t and HANDLE are always the same size, this warning is
      harmless. Just silence it using an intermediate uintptr_t variable.
      
      Closes https://github.com/curl/curl/pull/2908
      edfaf5a2
    • Daniel Stenberg's avatar
      README: add appveyor build badge [ci skip] · da239584
      Daniel Stenberg authored
      Closes #2913
      da239584
    • Ihor Karpenko's avatar
      schannel: client certificate store opening fix · 6b6c2b8d
      Ihor Karpenko authored
      1) Using CERT_STORE_OPEN_EXISTING_FLAG ( or CERT_STORE_READONLY_FLAG )
      while opening certificate store would be sufficient in this scenario and
      less-demanding in sense of required user credentials ( for example,
      IIS_IUSRS will get "Access Denied" 0x05 error for existing CertOpenStore
      call without any of flags mentioned above ),
      
      2) as 'cert_store_name' is a DWORD, attempt to format its value like a
      string ( in "Failed to open cert store" error message ) will throw null
      pointer exception
      
      3) adding GetLastError(), in my opinion, will make error message more
      useful.
      
      Bug: https://curl.haxx.se/mail/lib-2018-08/0198.html
      
      Closes #2909
      6b6c2b8d
    • Leonardo Taccari's avatar
      gopher: Do not translate `?' to `%09' · 8f3c3cd0
      Leonardo Taccari authored
      Since GOPHER support was added in curl `?' character was automatically
      translated to `%09' (`\t').
      
      However, this behaviour does not seems documented in RFC 4266 and for
      search selectors it is documented to directly use `%09' in the URL.
      Apart that several gopher servers in the current gopherspace have CGI
      support where `?' is used as part of the selector and translating it to
      `%09' often leads to surprising results.
      
      Closes #2910
      8f3c3cd0
  2. Aug 23, 2018
  3. Aug 22, 2018
  4. Aug 21, 2018
  5. Aug 20, 2018
  6. Aug 18, 2018
  7. Aug 17, 2018
  8. Aug 16, 2018
  9. Aug 15, 2018
  10. Aug 14, 2018
  11. Aug 13, 2018
    • Daniel Stenberg's avatar
      http: fix for tiny "HTTP/0.9" response · 8440616f
      Daniel Stenberg authored
      Deal with tiny "HTTP/0.9" (header-less) responses by checking the
      status-line early, even before a full "HTTP/" is received to allow
      detecting 0.9 properly.
      
      Test 1266 and 1267 added to verify.
      
      Fixes #2420
      Closes #2872
      8440616f