1. 04 Feb, 2010 5 commits
    • Yang Tse's avatar
      · 1a574942
      Yang Tse authored
      Fix variable initialization
      1a574942
    • Yang Tse's avatar
      · a9a5a8e4
      Yang Tse authored
      Modified test case 557 to additionally verify libcurl's internal curl_m*printf()
      functions formatting functionality when handling signed and unsigned shorts.
      a9a5a8e4
    • Yang Tse's avatar
      · 80443661
      Yang Tse authored
      Added size check for 'short' data type
      80443661
    • Yang Tse's avatar
      · 15efa262
      Yang Tse authored
      Fix compiler warning: unused variable
      15efa262
    • Yang Tse's avatar
      · 429e5445
      Yang Tse authored
      added an additional second to allow test to pass on heavily loaded servers
      429e5445
  2. 03 Feb, 2010 8 commits
    • Dan Fandrich's avatar
      Changed the Watcom makefiles to make them easier to keep in sync with · 680434f3
      Dan Fandrich authored
      Makefile.inc since that can't be included directly.
      680434f3
    • Daniel Stenberg's avatar
      more symbols added in 7.20.0 · c9f46446
      Daniel Stenberg authored
      c9f46446
    • Yang Tse's avatar
      · b77d0db5
      Yang Tse authored
      Fix OOM handling
      b77d0db5
    • Yang Tse's avatar
      · 3205ac35
      Yang Tse authored
      Fix progressmode Configurable struct member data type. Changed to
      'int' which fits better with existing CURL_PROGRESS_* definitions.
      3205ac35
    • Yang Tse's avatar
      · 381a4d6e
      Yang Tse authored
      Fix portability issue related with unaligned memory access
      381a4d6e
    • Yang Tse's avatar
      · f6d288a3
      Yang Tse authored
      Fix compiler warnings: conversion from 'const int ' to 'unsigned char ', possible loss of data
      f6d288a3
    • Yang Tse's avatar
      · 013ec6a9
      Yang Tse authored
      cookies with same path length might get sorted in different order when
      using different qsort implementations. In order to make this test give
      same results on different systems, paths now have different lengths.
      013ec6a9
    • Yang Tse's avatar
      · e2fc2944
      Yang Tse authored
      added an additional second to allow test to pass on heavily loaded servers
      e2fc2944
  3. 02 Feb, 2010 13 commits
    • Yang Tse's avatar
      · d1717e7c
      Yang Tse authored
      Fix compiler warning: conditional expression is constant
      d1717e7c
    • Yang Tse's avatar
      · e569ff95
      Yang Tse authored
      Fix compiler warning: local variable may be used without having been initialized.
      e569ff95
    • Yang Tse's avatar
      · 839b61c3
      Yang Tse authored
      Fix compiler warnings: conversion from 'const int ' to 'unsigned char ', possible loss of data
      839b61c3
    • Yang Tse's avatar
      · d28b8d31
      Yang Tse authored
      Fix compiler warnings:
      
      (1) conversion from 'const int ' to 'unsigned char ', possible loss of data
      (2) conditional expression is constant
      d28b8d31
    • Yang Tse's avatar
      · 2dfbd0d0
      Yang Tse authored
      mention a couple of changes back from November
      2dfbd0d0
    • Yang Tse's avatar
      · 54879d77
      Yang Tse authored
      mention run time statistics options
      54879d77
    • Yang Tse's avatar
      · 49ba75af
      Yang Tse authored
      - Symbol CURL_FORMAT_OFF_T now obsoleted, will be removed in a future release,
        symbol will not be available when building with CURL_NO_OLDIES defined. Use
        of CURL_FORMAT_CURL_OFF_T is preferred since 7.19.0
      49ba75af
    • Yang Tse's avatar
      · 232d17ec
      Yang Tse authored
      avoid possibility of using obsoleted stuff
      232d17ec
    • Yang Tse's avatar
      · bafba694
      Yang Tse authored
      remove setup.h inclusion which is already done from test.h inclusion
      bafba694
    • Kamil Dudka's avatar
      da23b16a
    • Yang Tse's avatar
      · 46de140a
      Yang Tse authored
      Fix compiler warning: variable was set but never used
      
      Simplify preprocessor symbol checking
      46de140a
    • Daniel Stenberg's avatar
      Julien Chaffraix pointed out a comment mistake, and I re-indented the code · 17a2c32c
      Daniel Stenberg authored
      slightly while editing
      17a2c32c
    • Yang Tse's avatar
      · 9f6c4daa
      Yang Tse authored
      include headers
      9f6c4daa
  4. 01 Feb, 2010 5 commits
    • Yang Tse's avatar
      · ea721946
      Yang Tse authored
      Conroy added a check to the coded message size since the docs stipulate
      that each call will contain a full protocol packet.
      ea721946
    • Yang Tse's avatar
      · 35e22060
      Yang Tse authored
      Conroy's fix to make the code match with the RTP documentation regarding
      writing out the whole header. The docs say it writes the whole header,
      but the code (before this patch) did not write out the leading $.
      35e22060
    • Daniel Stenberg's avatar
      We introduce a loop in lib/multi.c around all calls to multi_runsingle() and · 55f1e787
      Daniel Stenberg authored
      simply check for CURLM_CALL_MULTI_PERFORM internally. This has the added
      benefit that this goes in line with my long-term wishes to get rid of the
      CURLM_CALL_MULTI_PERFORM all together from the public API.
      55f1e787
    • Yang Tse's avatar
      · 516cf5c8
      Yang Tse authored
      update rtsp server header field from SWS to RTSPD
      516cf5c8
    • Yang Tse's avatar
      · 35fbeda0
      Yang Tse authored
      Test suite support for RTSP
      35fbeda0
  5. 30 Jan, 2010 1 commit
    • Yang Tse's avatar
      · 715e3a80
      Yang Tse authored
      Make Curl_pop3_write() additionally truncate trailing POP3_EOB from received
      string buffer, otherwise Curl_client_write() call with zero size would write
      to the end of string buffer including matched POP3_EOB.
      715e3a80
  6. 29 Jan, 2010 5 commits
    • Yang Tse's avatar
      · 6ebd71d1
      Yang Tse authored
      WIN32 fix, _beginthreadex() may return either 0 or -1L upon failure
      6ebd71d1
    • Yang Tse's avatar
      · 4ee4e66c
      Yang Tse authored
      fix errno usage for WIN32 builds
      4ee4e66c
    • Yang Tse's avatar
      · 4d19ebe7
      Yang Tse authored
      fix printf-style format strings
      4d19ebe7
    • Yang Tse's avatar
      · 5312fdcd
      Yang Tse authored
      Chris Conroy fixed test #568 issues with carriage returns
      5312fdcd
    • Yang Tse's avatar
      · fce02e1c
      Yang Tse authored
      RTSP followup fix. Both the pipelined and non-pipelined case need to
      check for (excess > 0 && !k->ignorebody).
      fce02e1c
  7. 28 Jan, 2010 3 commits