1. 21 May, 2010 1 commit
  2. 20 May, 2010 4 commits
  3. 19 May, 2010 2 commits
  4. 18 May, 2010 2 commits
  5. 16 May, 2010 2 commits
  6. 15 May, 2010 3 commits
  7. 14 May, 2010 6 commits
  8. 13 May, 2010 3 commits
  9. 12 May, 2010 8 commits
  10. 11 May, 2010 4 commits
  11. 10 May, 2010 1 commit
  12. 09 May, 2010 1 commit
    • Daniel Stenberg's avatar
      findtool: file name as a full path requires a slash · a784ed60
      Daniel Stenberg authored
      Kalle Vahlman's patch applied a while ago broke how the findtool
      function searches for tools, as it would always check if "$file"
      was present first, which thus made the bad assumption that a file
      in the current directory would be a match.
      
      I noticed when it found 'libtool' in the current directory but
      libtoolize is not there, which confused the script.
      a784ed60
  13. 08 May, 2010 1 commit
  14. 07 May, 2010 2 commits
    • Daniel Stenberg's avatar
      multi interface: missed storing connection time · adaf8753
      Daniel Stenberg authored
      Dirk Manske reported a regression. When connecting with the multi
      interface, there were situations where libcurl wouldn't store
      connect time correctly as it used to (and is documented to) do.
      
      Using his fine sample program we could repeat it, and I wrote up
      test case 573 using that code. The problem does not easily show
      itself using the local test suite though.
      
      The fix, also as suggested by Dirk, is a bit on the ugly side as
      it adds yet another call to Curl_verboseconnect() and setting the
      TIMER_CONNECT time.  That situation is subject for some closer
      inspection in the future.
      adaf8753
    • Daniel Stenberg's avatar
      verboseconnect: so the verbose checking within the function · 89148570
      Daniel Stenberg authored
      As the function is used more than once and libcurl can be built
      without it, do the conditional check within the verboseconnect()
      function itself.
      89148570