mirror of
https://github.com/moparisthebest/curl
synced 2025-03-11 07:39:50 -04:00
Fixed --use-ascii to properly convert text files on Symbian OS, MS-DOS
and OS/2.
This commit is contained in:
parent
a67e207866
commit
7a8b11d716
4
CHANGES
4
CHANGES
@ -6,6 +6,10 @@
|
|||||||
|
|
||||||
Changelog
|
Changelog
|
||||||
|
|
||||||
|
Daniel Fandrich (29 Jul 2008)
|
||||||
|
- Fixed --use-ascii to properly convert text files on Symbian OS, MS-DOS
|
||||||
|
and OS/2.
|
||||||
|
|
||||||
Daniel Fandrich (28 Jul 2008)
|
Daniel Fandrich (28 Jul 2008)
|
||||||
- Fixed display of the interface bind address in the trace output when it's
|
- Fixed display of the interface bind address in the trace output when it's
|
||||||
an IPv6 address.
|
an IPv6 address.
|
||||||
|
@ -36,6 +36,7 @@ This release includes the following bugfixes:
|
|||||||
o poll not working on Windows Vista due to POLLPRI being incorrectly used
|
o poll not working on Windows Vista due to POLLPRI being incorrectly used
|
||||||
o user-agent in CONNECT with non-HTTP protocols
|
o user-agent in CONNECT with non-HTTP protocols
|
||||||
o CURL_READFUNC_PAUSE problems fixed
|
o CURL_READFUNC_PAUSE problems fixed
|
||||||
|
o --use-ascii now works on Symbian OS, MS-DOS and OS/2
|
||||||
|
|
||||||
This release includes the following known bugs:
|
This release includes the following known bugs:
|
||||||
|
|
||||||
|
@ -1211,7 +1211,8 @@ struct UrlState {
|
|||||||
bool pipe_broke; /* TRUE if the connection we were pipelined on broke
|
bool pipe_broke; /* TRUE if the connection we were pipelined on broke
|
||||||
and we need to restart from the beginning */
|
and we need to restart from the beginning */
|
||||||
|
|
||||||
#ifndef WIN32
|
#if !defined(WIN32) && !defined(MSDOS) && !defined(__EMX__) && \
|
||||||
|
!defined(__SYMBIAN32__)
|
||||||
/* do FTP line-end conversions on most platforms */
|
/* do FTP line-end conversions on most platforms */
|
||||||
#define CURL_DO_LINEEND_CONV
|
#define CURL_DO_LINEEND_CONV
|
||||||
/* for FTP downloads: track CRLF sequences that span blocks */
|
/* for FTP downloads: track CRLF sequences that span blocks */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user