1. 06 Mar, 2017 6 commits
  2. 05 Mar, 2017 4 commits
  3. 04 Mar, 2017 4 commits
  4. 03 Mar, 2017 4 commits
  5. 02 Mar, 2017 3 commits
  6. 28 Feb, 2017 1 commit
    • Marcel Raad's avatar
      warnless: suppress compiler warning · a162d8b2
      Marcel Raad authored
      If size_t is 32 bits, MSVC warns:
      warning C4310: cast truncates constant value
      The warning is harmless as CURL_MASK_SCOFFT gets
      truncated to the maximum value of size_t.
      a162d8b2
  7. 27 Feb, 2017 2 commits
  8. 26 Feb, 2017 2 commits
  9. 25 Feb, 2017 9 commits
  10. 24 Feb, 2017 3 commits
  11. 23 Feb, 2017 2 commits
    • Dan Fandrich's avatar
      tests: use consistent environment variables for setting charset · ecd1d020
      Dan Fandrich authored
      Character set in POSIX is set by the locale defined (in decreasing order
      of precedence) by the LC_ALL, LC_CTYPE and LANG environment variables (I
      believe CHARSET is only historic). LC_ALL is cleared to ensure that
      LC_CTYPE takes effect, but LC_ALL is not used to set the locale to
      ensure that other parts of the locale aren't overriden, if set.  Since
      there doesn't seem to be a cross-platform way of specifying a UTF-8
      locale, and not all systems may support UTF-8, a <precheck> is used
      (where relevant) to skip the test if UTF-8 isn't in use.  Test 1035 was
      also converted to UTF-8 for consistency, as the actual character set
      used there is irrelevant to the test.
      ecd1d020
    • Jay Satiro's avatar
      url: Default the CA proxy bundle location to CURL_CA_BUNDLE · 93cce248
      Jay Satiro authored
      If the compile-time CURL_CA_BUNDLE location is defined use it as the
      default value for the proxy CA bundle location, which is the same as
      what we already do for the regular CA bundle location.
      
      Ref: https://github.com/curl/curl/pull/1257
      93cce248