Skip to content
Snippets Groups Projects
  1. Dec 17, 2009
  2. Nov 18, 2009
  3. Nov 02, 2009
  4. Oct 13, 2009
  5. Apr 21, 2009
  6. Mar 08, 2009
  7. Dec 19, 2008
  8. Oct 23, 2008
  9. Oct 16, 2008
  10. Oct 15, 2008
    • Daniel Stenberg's avatar
      - Pascal Terjan filed bug #2154627 · a579d670
      Daniel Stenberg authored
        (http://curl.haxx.se/bug/view.cgi?id=2154627) which pointed out that libcurl
        uses strcasecmp() in multiple places where it causes failures when the
        Turkish locale is used. This is because 'i' and 'I' isn't the same letter so
        strcasecmp() on those letters are different in Turkish than in English (or
        just about all other languages). I thus introduced a totally new internal
        function in libcurl (called Curl_ascii_equal) for doing case insentive
        comparisons for english-(ascii?) style strings that thus will make "file"
        and "FILE" match even if the Turkish locale is selected.
      a579d670
  11. Aug 17, 2008
  12. Nov 24, 2007
  13. Nov 05, 2007
  14. Oct 17, 2007
  15. Oct 12, 2007
  16. Oct 09, 2007
  17. Oct 02, 2007
  18. Sep 15, 2007
  19. Aug 25, 2007
  20. Aug 23, 2007
  21. Aug 22, 2007
  22. Aug 20, 2007
  23. Aug 16, 2007
  24. Aug 15, 2007
  25. Aug 13, 2007
  26. Aug 12, 2007
  27. Aug 11, 2007
    • Daniel Stenberg's avatar
      Patrick Monnerat modified the LDAP code and approach in curl. Starting now, · d0edb478
      Daniel Stenberg authored
      the configure script checks for openldap and friends and we link with those
      libs just like we link all other third party libraries, and we no longer
      dlopen() those libraries. Our private header file lib/ldap.h was renamed to
      lib/curl_ldap.h due to this. I set a tag in CVS (curl-7_17_0-preldapfix)
      just before this commit, just in case.
      d0edb478
  28. Mar 12, 2007
  29. Feb 26, 2007
  30. Jan 03, 2007
  31. Oct 29, 2006
  32. Oct 27, 2006
    • Yang Tse's avatar
      Compiler warning fix. · a93695a7
      Yang Tse authored
      Assigning the const value zero to a pointer to function
      results in a null pointer value assignment to the function
      pointer.
      
      Assignment of any nonzero value is what should result in a
      implementation compiler dependent result.
      
      Since what we want to do here is the first case, this should
      not trigger compiler warnings related with conversions from
      'pointer to data' to 'pointer to function'.
      
      Our autobuild test suite will judge.
      a93695a7
Loading