Skip to content
  1. Mar 06, 2017
  2. Mar 05, 2017
  3. Mar 04, 2017
  4. Mar 03, 2017
  5. Mar 02, 2017
  6. Feb 28, 2017
    • 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. Feb 27, 2017
  8. Feb 26, 2017
  9. Feb 25, 2017
  10. Feb 24, 2017
  11. Feb 23, 2017
    • 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