platform/upstream/curl.git
14 years agoignore pid files and stunnel.conf
Daniel Stenberg [Sat, 27 Mar 2010 21:56:47 +0000 (22:56 +0100)]
ignore pid files and stunnel.conf

all used while running tests

14 years agomake sure git pull is actually done!
Daniel Stenberg [Sat, 27 Mar 2010 17:57:24 +0000 (18:57 +0100)]
make sure git pull is actually done!

14 years agochangelogged: smoother rate limiting
Daniel Stenberg [Fri, 26 Mar 2010 22:35:24 +0000 (23:35 +0100)]
changelogged: smoother rate limiting

14 years agoMake rate-limitation logic smoother
Ben Greear [Fri, 26 Mar 2010 22:33:02 +0000 (23:33 +0100)]
Make rate-limitation logic smoother

This gives a smoother rate limitation performance by using
sub-second pauses and also taking the buffer sizes into
account.

14 years agoremove all .cvsignore files
Daniel Stenberg [Thu, 25 Mar 2010 22:22:03 +0000 (23:22 +0100)]
remove all .cvsignore files

14 years agoPROT_CLOSEACTION should not include TFTP
Daniel Stenberg [Thu, 25 Mar 2010 18:56:50 +0000 (19:56 +0100)]
PROT_CLOSEACTION should not include TFTP

TFTP is not a protocol that uses close actions so it should
not be set in that bitmask!

14 years agoAvoid double newline for the 'last commits' log in testcurl.pl
Tor Arntsen [Thu, 25 Mar 2010 15:43:01 +0000 (16:43 +0100)]
Avoid double newline for the 'last commits' log in testcurl.pl

The backtick command which extracts 'git log' lines come with a
newline, so chomp the newline before calling logit(), as the logit
function adds a newline by itself.

14 years agoChange to version-independent git option for 'git log --oneline'
Tor Arntsen [Thu, 25 Mar 2010 15:23:27 +0000 (16:23 +0100)]
Change to version-independent git option for 'git log --oneline'

'git log --oneline' is a relatively recent Git function. It is
documented to be the same as 'git log --pretty=oneline --abbrev-commit',
so use that instead. It works all the way back to Git 1.5.0.

14 years agoshow 5 commits even if no git pull was made
Daniel Stenberg [Thu, 25 Mar 2010 12:56:01 +0000 (13:56 +0100)]
show 5 commits even if no git pull was made

14 years agodon't touch ares/aclocal.m4 and show recent git commits
Daniel Stenberg [Thu, 25 Mar 2010 12:44:13 +0000 (13:44 +0100)]
don't touch ares/aclocal.m4 and show recent git commits

since c-ares no longer embedded, we must not touch such files
anymore

we show the 5 last git commits if git was proven in use, to help
us see exactly what's being tested

14 years agouse CURL_SIZEOF_LONG instead of SIZEOF_LONG
Daniel Stenberg [Thu, 25 Mar 2010 10:39:13 +0000 (11:39 +0100)]
use CURL_SIZEOF_LONG instead of SIZEOF_LONG

That's the symbol we have or generate in include/curl/curlbuild.h

14 years agos/CVS/DEV in the version string from the git repo
Daniel Stenberg [Thu, 25 Mar 2010 09:38:17 +0000 (10:38 +0100)]
s/CVS/DEV in the version string from the git repo

14 years agoMerge branch 'master' of github.com:bagder/curl
Bill Hoffman [Thu, 25 Mar 2010 03:49:26 +0000 (23:49 -0400)]
Merge branch 'master' of github.com:bagder/curl

14 years agoAdd .gitattributes files to turn off CRLF translation for some files
Bill Hoffman [Thu, 25 Mar 2010 03:48:35 +0000 (23:48 -0400)]
Add .gitattributes files to turn off CRLF translation for some files

14 years agoprovide a version number as today's date
Daniel Stenberg [Wed, 24 Mar 2010 21:40:56 +0000 (22:40 +0100)]
provide a version number as today's date

It should at least help visualize which autobuilds that are
using this script.

14 years agotestcurl now uses git instead of CVS
Daniel Stenberg [Wed, 24 Mar 2010 21:26:41 +0000 (22:26 +0100)]
testcurl now uses git instead of CVS

14 years agoMerge branch 'master' of github.com:bagder/curl
Bill Hoffman [Wed, 24 Mar 2010 18:19:50 +0000 (14:19 -0400)]
Merge branch 'master' of github.com:bagder/curl

14 years agoEnable LDAP by default since it is now disabled when ldap.h is not found,
Bill Hoffman [Wed, 24 Mar 2010 18:16:41 +0000 (14:16 -0400)]
Enable LDAP by default since it is now disabled when ldap.h is not found,

14 years agoCMake fixes for Linux.
Bill Hoffman [Wed, 24 Mar 2010 18:07:18 +0000 (14:07 -0400)]
CMake fixes for Linux.

Make sure <sys/socket.h> is included if around when testing/using
socklen_t.  Also, disable LDAP if LDAP_H is not found on the system.

14 years agofix: timeout after last data chunk was handled
Bob Richmond [Wed, 24 Mar 2010 16:02:17 +0000 (17:02 +0100)]
fix: timeout after last data chunk was handled

Bob Richmond: There's an annoying situation where libcurl will
read new HTTP response data from a socket, then check if it's a
timeout if one is set. If the last packet received constitutes
the end of the response body, libcurl still treats it as a
timeout condition and reports a message like:

"Operation timed out after 3000 milliseconds with 876 out of 876
bytes received"

It should only a timeout if the timer lapsed and we DIDN'T
receive the end of the response body yet.

14 years agoavoid compiler warning without USE_ALARM_TIMEOUT
Daniel Stenberg [Wed, 24 Mar 2010 16:00:20 +0000 (17:00 +0100)]
avoid compiler warning without USE_ALARM_TIMEOUT

14 years agoFix curl CMake build.
Bill Hoffman [Wed, 24 Mar 2010 14:57:54 +0000 (10:57 -0400)]
Fix curl CMake build.

This commit fixes the cmake build of curl, and cleans up the
cmake code a little.  It removes some commented out code and
some trailing whitespace.  To get curl to build the binary
tree include/curl directory needed to be added to the include
path. Also, SIZEOF_SHORT needed to be added.  A check for the
lack of defines of SIZEOF_* for warnless.c was added.

14 years agoremove debug printfs
Chris Conroy [Wed, 24 Mar 2010 13:21:33 +0000 (09:21 -0400)]
remove debug printfs

14 years agoRTSP GET_PARAMETER fix
Daniel Stenberg [Wed, 24 Mar 2010 12:28:02 +0000 (13:28 +0100)]
RTSP GET_PARAMETER fix

Christopher Conroy fixed a problem with RTSP and GET_PARAMETER
reported to us by Massimo Callegari. There's a new test case 572
that verifies this now.

14 years agoremove trace of CVS
Daniel Stenberg [Wed, 24 Mar 2010 12:27:49 +0000 (13:27 +0100)]
remove trace of CVS

14 years agoFix RTSP GET_PARAMETER empty and non-empty operation.
Chris Conroy [Wed, 24 Mar 2010 05:35:03 +0000 (01:35 -0400)]
Fix RTSP GET_PARAMETER empty and non-empty operation.

Test coverage included. Thanks to Massimo Callegari for the bug report

14 years agos/CVS/DEV/ in the version string for repo versions
Daniel Stenberg [Wed, 24 Mar 2010 10:30:34 +0000 (11:30 +0100)]
s/CVS/DEV/ in the version string for repo versions

14 years agoscrapped all left-over TODOs
Daniel Stenberg [Wed, 24 Mar 2010 10:20:34 +0000 (11:20 +0100)]
scrapped all left-over TODOs

In order to get back on track, I've removed all the plans for
stuff I had in the queue. I will instead focus on fixing bugs and
relying on that people who truly want things added will come back
on the mailing list and nag and provide patches.

7.20.1 should be possible to release in April 2010

14 years agorestore executable bits on some files
Daniel Stenberg [Wed, 24 Mar 2010 10:07:35 +0000 (11:07 +0100)]
restore executable bits on some files

14 years agoremove the CVSish $Id$ lines
Daniel Stenberg [Wed, 24 Mar 2010 10:02:54 +0000 (11:02 +0100)]
remove the CVSish $Id$ lines

14 years agoThe 'ares' subtree has been removed from the source repository
Daniel Stenberg [Wed, 24 Mar 2010 09:47:48 +0000 (10:47 +0100)]
The 'ares' subtree has been removed from the source repository

14 years agos/CVS/git
Daniel Stenberg [Wed, 24 Mar 2010 09:45:47 +0000 (10:45 +0100)]
s/CVS/git

14 years agoupdate to current state
Daniel Stenberg [Wed, 24 Mar 2010 09:44:25 +0000 (10:44 +0100)]
update to current state

14 years agoremove the ares subtree
Daniel Stenberg [Wed, 24 Mar 2010 09:34:30 +0000 (10:34 +0100)]
remove the ares subtree

c-ares is now hosted entirely separate from the curl project
see http://c-ares.haxx.se/ for all details concerning c-ares,
its source repository and more.

14 years agomark connection as connected
Daniel Stenberg [Tue, 23 Mar 2010 22:29:23 +0000 (23:29 +0100)]
mark connection as connected

Kenny To filed the bug report #2963679 with patch to fix a
problem he experienced with doing multi interface HTTP POST over
a proxy using PROXYTUNNEL. He found a case where it would connect
fine but bits.tcpconnect was not set correct so libcurl didn't
work properly.

(http://curl.haxx.se/bug/view.cgi?id=2963679)

14 years agoenabled valgrind
Daniel Stenberg [Tue, 23 Mar 2010 22:25:04 +0000 (23:25 +0100)]
enabled valgrind

I ran it now successfully and it helped to pinpoint a libssh2
memory leak!

14 years agoUpdated Symbian notes
Dan Fandrich [Tue, 23 Mar 2010 22:25:00 +0000 (15:25 -0700)]
Updated Symbian notes

14 years agochunked-encoding with Content-Length: header problem
Daniel Stenberg [Tue, 23 Mar 2010 14:26:45 +0000 (15:26 +0100)]
chunked-encoding with Content-Length: header problem

Akos Pasztory filed debian bug report #572276
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=572276
mentioning a problem with a resource that returns chunked-encoded
_and_ with a Content-Length and libcurl failed to properly ignore
the latter information.

14 years agodelayed easy handle kill caused double Curl_close() call
Daniel Stenberg [Tue, 23 Mar 2010 12:18:30 +0000 (13:18 +0100)]
delayed easy handle kill caused double Curl_close() call

Hauke Duden provided an example program that made the multi
interface crash.  His example simply used the multi interface and
did first one FTP transfer and after completion it used a second
easy handle and did another FTP transfer on the same FTP server.

This triggered a bug in the "delayed easy handle kill" system
that curl uses: when an FTP connection is left alive it must keep
an easy handle around internally - only for the purpose of having
an easy handle when it later disconnects it. The code assumed
that when the easy handle was removed and an internal reference
was made, that version could be killed later on when a new easy
handle came using the same connection. This was wrong as Hauke's
example showed that the removed handle wasn't killed for real
until later. This caused a double close attempt => segfault.

14 years agoignore more files generated when tests run in the source tree
Daniel Stenberg [Tue, 23 Mar 2010 11:43:42 +0000 (12:43 +0100)]
ignore more files generated when tests run in the source tree

14 years agoThomas Lopatic fixed the alarm()-based DNS timeout
Daniel Stenberg [Mon, 22 Mar 2010 21:00:55 +0000 (22:00 +0100)]
Thomas Lopatic fixed the alarm()-based DNS timeout

14 years agofix the alarm()-based DNS timeout
Thomas Lopatic [Mon, 22 Mar 2010 20:57:48 +0000 (21:57 +0100)]
fix the alarm()-based DNS timeout

Looking at the code of Curl_resolv_timeout() in hostip.c, I think
that in case of a timeout, the signal handler for SIGALRM never
gets removed. I think that in my case it gets executed at some
point later on when execution has long left Curl_resolv_timeout()
or even the cURL library.

The code that is jumped to with siglongjmp() simply sets the
error message to "name lookup timed out" and then returns with
CURLRESOLV_ERROR. I guess that instead of simply returning
without cleaning up, the code should have a goto that jumps to
the spot right after the call to Curl_resolv().

14 years agoFix warnings for clang
Daniel Johnson [Mon, 22 Mar 2010 00:46:33 +0000 (20:46 -0400)]
Fix warnings for clang

14 years agoMerge branch 'master' of github.com:bagder/curl
Daniel Stenberg [Mon, 22 Mar 2010 08:51:52 +0000 (09:51 +0100)]
Merge branch 'master' of github.com:bagder/curl

14 years agoFix insufficient initialization in Curl_clone_ssl_config()
douglas steinwand [Mon, 22 Mar 2010 08:25:03 +0000 (09:25 +0100)]
Fix insufficient initialization in Curl_clone_ssl_config()

which could have caused a double free when reusing curl handle.

14 years agowe never used this file anyway
Daniel Stenberg [Sun, 21 Mar 2010 23:42:06 +0000 (00:42 +0100)]
we never used this file anyway

14 years agos/CVS/git
Daniel Stenberg [Sun, 21 Mar 2010 23:41:34 +0000 (00:41 +0100)]
s/CVS/git

14 years agovarious changes of CVS to git
Daniel Stenberg [Sun, 21 Mar 2010 23:34:09 +0000 (00:34 +0100)]
various changes of CVS to git

14 years agoremove references to CVS in the code and use DEV instead
Daniel Stenberg [Sun, 21 Mar 2010 23:26:29 +0000 (00:26 +0100)]
remove references to CVS in the code and use DEV instead

14 years agoBen Greear's two fixes explained
Daniel Stenberg [Sun, 21 Mar 2010 22:34:29 +0000 (23:34 +0100)]
Ben Greear's two fixes explained

14 years agoFix tftp return codes and tsize upload handling
Ben Greear [Sun, 21 Mar 2010 22:24:36 +0000 (23:24 +0100)]
Fix tftp return codes and tsize upload handling

Error codes were not properly returned to the main curl code (and on to apps
using libcurl).

tftp was crapping out when tsize == 0 on upload, but I see no reason to fail
to upload just because the remote file is zero-length.  Ignore tsize option on
upload.

14 years agomore files to ignore
Daniel Stenberg [Sat, 20 Mar 2010 23:21:34 +0000 (00:21 +0100)]
more files to ignore

14 years agoprovide an initial set of .gitignore files
Daniel Stenberg [Sat, 20 Mar 2010 22:35:45 +0000 (23:35 +0100)]
provide an initial set of .gitignore files

14 years ago- Improved Curl_read() to not ignore the error returned from Curl_ssl_recv().
Kamil Dudka [Fri, 19 Mar 2010 15:43:11 +0000 (15:43 +0000)]
- Improved Curl_read() to not ignore the error returned from Curl_ssl_recv().

14 years agofix warning about conversions between curl_off_t and long
Daniel Stenberg [Thu, 18 Mar 2010 21:52:31 +0000 (21:52 +0000)]
fix warning about conversions between curl_off_t and long

14 years agoanother shot at the ftp_init() icc 9.1 optimizer issue
Yang Tse [Thu, 18 Mar 2010 17:37:00 +0000 (17:37 +0000)]
another shot at the ftp_init() icc 9.1 optimizer issue

14 years agoreplaced intel compiler option -no-ansi-alias with -fno-strict-aliasing
Yang Tse [Wed, 17 Mar 2010 10:44:28 +0000 (10:44 +0000)]
replaced intel compiler option -no-ansi-alias with -fno-strict-aliasing

14 years agoupdate outdated serial number
Yang Tse [Wed, 17 Mar 2010 10:39:07 +0000 (10:39 +0000)]
update outdated serial number

14 years agoFactored out some code into a few independent functions
Dan Fandrich [Tue, 16 Mar 2010 05:18:21 +0000 (05:18 +0000)]
Factored out some code into a few independent functions

14 years ago- Constantine Sapuntzakis brought a patch:
Daniel Stenberg [Mon, 15 Mar 2010 22:40:42 +0000 (22:40 +0000)]
- Constantine Sapuntzakis brought a patch:

  The problem mentioned on Dec 10 2009
  (http://curl.haxx.se/bug/view.cgi?id=2905220) was only partially fixed.
  Partially because an easy handle can be associated with many connections in
  the cache (e.g. if there is a redirect during the lifetime of the easy
  handle).  The previous patch only cleaned up the first one. The new fix now
  removes the easy handle from all connections, not just the first one.

14 years agofix compiler warning
Yang Tse [Thu, 11 Mar 2010 18:53:42 +0000 (18:53 +0000)]
fix compiler warning

14 years agoSSL should now be working out-of-the-box on Symbian S60.
Dan Fandrich [Thu, 11 Mar 2010 06:59:16 +0000 (06:59 +0000)]
SSL should now be working out-of-the-box on Symbian S60.

14 years agoEnable Symbian zlib support by default.
Dan Fandrich [Thu, 11 Mar 2010 06:58:36 +0000 (06:58 +0000)]
Enable Symbian zlib support by default.

14 years agoAllow compilation even when OpenSSL has been configured without MD4 support.
Dan Fandrich [Thu, 11 Mar 2010 06:57:33 +0000 (06:57 +0000)]
Allow compilation even when OpenSSL has been configured without MD4 support.

14 years agoA few Symbian build changes
Dan Fandrich [Wed, 10 Mar 2010 06:55:23 +0000 (06:55 +0000)]
A few Symbian build changes

14 years agowatt32 compilation fix
Yang Tse [Tue, 9 Mar 2010 17:59:35 +0000 (17:59 +0000)]
watt32 compilation fix

14 years ago- Ben Greear brought a patch that fixed the rate limiting logic for TFTP when
Daniel Stenberg [Sat, 6 Mar 2010 18:42:06 +0000 (18:42 +0000)]
- Ben Greear brought a patch that fixed the rate limiting logic for TFTP when
  the easy interface was used.

14 years agoindent fix by Ben Greear, I removed some braces for single-line conditional
Daniel Stenberg [Sat, 6 Mar 2010 18:39:45 +0000 (18:39 +0000)]
indent fix by Ben Greear, I removed some braces for single-line conditional
expressions

14 years agoAdded another VS10 version string
Yang Tse [Sat, 6 Mar 2010 10:52:56 +0000 (10:52 +0000)]
Added another VS10 version string

14 years agofix line break
Yang Tse [Sat, 6 Mar 2010 02:33:25 +0000 (02:33 +0000)]
fix line break

14 years agoremoved usage of 's6_addr', fixing compilation issue triggered with no
Yang Tse [Sat, 6 Mar 2010 01:23:09 +0000 (01:23 +0000)]
removed usage of 's6_addr', fixing compilation issue triggered with no
longer using 'in6_addr' but only our 'ares_in6_addr' struct

14 years agoDaniel Johnson provided fixes for building with the clang compiler
Daniel Stenberg [Fri, 5 Mar 2010 22:53:30 +0000 (22:53 +0000)]
Daniel Johnson provided fixes for building with the clang compiler

14 years agoAdded IPv6 name servers support
Yang Tse [Fri, 5 Mar 2010 20:01:47 +0000 (20:01 +0000)]
Added IPv6 name servers support

14 years agoOps!. Readded ares_nowarn.h.
Gisle Vanem [Fri, 5 Mar 2010 18:45:17 +0000 (18:45 +0000)]
Ops!. Readded ares_nowarn.h.

14 years agoAdded ares_nowarn.c.
Gisle Vanem [Fri, 5 Mar 2010 18:21:56 +0000 (18:21 +0000)]
Added ares_nowarn.c.

14 years agoConstantine Sapuntzakis detected and fixed a double free in builds done
Yang Tse [Fri, 5 Mar 2010 03:15:19 +0000 (03:15 +0000)]
Constantine Sapuntzakis detected and fixed a double free in builds done
with threaded resolver enabled (Windows default configuration) that would
get triggered when a curl handle is closed while doing DNS resolution.

14 years agoAdded SIZEOF_INT and SIZEOF_SHORT definitions for VMS configuration file
Yang Tse [Fri, 5 Mar 2010 02:14:19 +0000 (02:14 +0000)]
Added SIZEOF_INT and SIZEOF_SHORT definitions for VMS configuration file

14 years agoJulien Chaffraix clarified CURLOPT_HEADERFUNCTION and made
Daniel Stenberg [Thu, 4 Mar 2010 16:06:00 +0000 (16:06 +0000)]
Julien Chaffraix clarified CURLOPT_HEADERFUNCTION and made
CURLOPT_HEADERFUNCTION and CURLOPT_WRITEFUNCTION more consistent

14 years ago- [Daniel Johnson] I've been trying to build libcurl with clang on Darwin and
Daniel Stenberg [Tue, 2 Mar 2010 22:02:56 +0000 (22:02 +0000)]
- [Daniel Johnson] I've been trying to build libcurl with clang on Darwin and
  ran into some issues with the GSSAPI tests in configure.ac. The tests first
  try to determine the include dirs and libs and set CPPFLAGS and LIBS
  accordingly. It then checks for the headers and finally sets LIBS a second
  time, causing the libs to be included twice. The first setting of LIBS seems
  redundant and should be left out, since the first part is otherwise just
  about finding headers.

  My second issue is that 'krb5-config --libs gssapi' on Darwin is less than
  useless and returns junk that, while it happens to work with gcc, causes
  clang to choke. For example, --libs returns $CFLAGS along with the libs,
  which is really retarded. Simply setting 'LIBS="$LIBS -lgssapi_krb5
  -lresolv"' on Darwin is sufficient.

14 years ago- Based on patch provided by Jacob Moshenko, the transfer logic now properly
Daniel Stenberg [Tue, 2 Mar 2010 21:20:22 +0000 (21:20 +0000)]
- Based on patch provided by Jacob Moshenko, the transfer logic now properly
  makes sure that when using sub-second timeouts, there's no final bad 1000ms
  wait. Previously, a sub-second timeout would often make the elapsed time end
  up the time rounded up to the nearest second (e.g. 1s for 200ms timeout)

14 years agoupdate the generic copyright year range to include 2010
Daniel Stenberg [Tue, 2 Mar 2010 13:47:58 +0000 (13:47 +0000)]
update the generic copyright year range to include 2010

14 years ago- Andrei Benea filed bug report #2956698 and pointed out that the
Daniel Stenberg [Tue, 2 Mar 2010 13:41:18 +0000 (13:41 +0000)]
- Andrei Benea filed bug report #2956698 and pointed out that the
  CURLOPT_CERTINFO feature leaked memory due to a missing OpenSSL function
  call. He provided the patch to fix it too.

  http://curl.haxx.se/bug/view.cgi?id=2956698

14 years ago- Markus Duft pointed out in bug #2961796 that even though Interix has a
Daniel Stenberg [Tue, 2 Mar 2010 13:34:57 +0000 (13:34 +0000)]
- Markus Duft pointed out in bug #2961796 that even though Interix has a
  poll() function it doesn't quite work the way we want it so we must disable
  it, and he also provided a patch for it.

  http://curl.haxx.se/bug/view.cgi?id=2961796

14 years ago- Made the pingpong timeout code properly deal with the response timeout AND
Daniel Stenberg [Tue, 2 Mar 2010 13:26:23 +0000 (13:26 +0000)]
- Made the pingpong timeout code properly deal with the response timeout AND
  the global timeout if set. Also, as was reported in the bug report #2956437
  by Ryan Chan, the time stamp to use as basis for the per command timeout was
  not set properly in the DONE phase for FTP (and not for SMTP) so I fixed
  that just now. This was a regression compared to 7.19.7 due to the
  conversion of FTP code over to the generic pingpong concepts.

  http://curl.haxx.se/bug/view.cgi?id=2956437

14 years agoremove assignment never used
Daniel Stenberg [Tue, 2 Mar 2010 13:05:02 +0000 (13:05 +0000)]
remove assignment never used

14 years ago- Ben Greear provided an update for TFTP that fixes upload.
Daniel Stenberg [Mon, 1 Mar 2010 22:14:47 +0000 (22:14 +0000)]
- Ben Greear provided an update for TFTP that fixes upload.

14 years agoSSL, not SSH, SSL
Daniel Stenberg [Mon, 1 Mar 2010 22:10:55 +0000 (22:10 +0000)]
SSL, not SSH, SSL

14 years ago- Wesley Miaw reported bug #2958179 which identified a case of looping during
Daniel Stenberg [Mon, 1 Mar 2010 21:59:07 +0000 (21:59 +0000)]
- Wesley Miaw reported bug #2958179 which identified a case of looping during
  OpenSSL based SSL handshaking even though the multi interface was used and
  there was no good reason for it.

  http://curl.haxx.se/bug/view.cgi?id=2958179

14 years agoAdded SIZEOF_INT and SIZEOF_SHORT definitions for non-configure systems
Yang Tse [Sun, 28 Feb 2010 02:51:35 +0000 (02:51 +0000)]
Added SIZEOF_INT and SIZEOF_SHORT definitions for non-configure systems

14 years agoAdded ares_nowarn.* to VC6 project file
Yang Tse [Sun, 28 Feb 2010 02:50:51 +0000 (02:50 +0000)]
Added ares_nowarn.* to VC6 project file

14 years agospellchecked by Stéphane Fillod
Daniel Stenberg [Fri, 26 Feb 2010 22:58:24 +0000 (22:58 +0000)]
spellchecked by Stéphane Fillod

14 years ago- Pat Ray in bug #2958474 pointed out an off-by-one case when receiving a
Daniel Stenberg [Fri, 26 Feb 2010 22:55:30 +0000 (22:55 +0000)]
- Pat Ray in bug #2958474 pointed out an off-by-one case when receiving a
  chunked-encoding trailer.

  http://curl.haxx.se/bug/view.cgi?id=2958474

14 years agoFixed a couple of out of memory leaks and a segfault in the IMAP code.
Dan Fandrich [Fri, 26 Feb 2010 21:24:44 +0000 (21:24 +0000)]
Fixed a couple of out of memory leaks and a segfault in the IMAP code.

14 years agofix sizeof short
Yang Tse [Fri, 26 Feb 2010 19:12:23 +0000 (19:12 +0000)]
fix sizeof short

14 years agoAdded SIZEOF_INT and SIZEOF_SHORT definitions for non-configure systems
Yang Tse [Fri, 26 Feb 2010 18:32:46 +0000 (18:32 +0000)]
Added SIZEOF_INT and SIZEOF_SHORT definitions for non-configure systems

14 years agoAdded SIZEOF_INT definition
Yang Tse [Fri, 26 Feb 2010 17:48:18 +0000 (17:48 +0000)]
Added SIZEOF_INT definition

14 years agofix compiler warning
Yang Tse [Fri, 26 Feb 2010 16:42:33 +0000 (16:42 +0000)]
fix compiler warning

14 years agofix compiler warning
Yang Tse [Fri, 26 Feb 2010 01:47:21 +0000 (01:47 +0000)]
fix compiler warning

14 years agofix compiler warning
Yang Tse [Thu, 25 Feb 2010 08:09:05 +0000 (08:09 +0000)]
fix compiler warning

14 years agoFixed a couple of out of memory leaks and a segfault in the SMTP code.
Dan Fandrich [Thu, 25 Feb 2010 08:07:06 +0000 (08:07 +0000)]
Fixed a couple of out of memory leaks and a segfault in the SMTP code.