mirror of
https://github.com/moparisthebest/curl
synced 2025-01-02 09:28:01 -05:00
Marco G. Salvagno's OS/2 patch is applied
This commit is contained in:
parent
d62d25bdb4
commit
00ad88408d
13
lib/url.c
13
lib/url.c
@ -1183,6 +1183,19 @@ static UrgError _urlget(struct UrlData *data)
|
|||||||
kerberos_connect(data, name);
|
kerberos_connect(data, name);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __EMX__
|
||||||
|
/* 20000330 mgs
|
||||||
|
* the check is quite a hack...
|
||||||
|
* we're calling _fsetmode to fix the problem with fwrite converting newline
|
||||||
|
* characters (you get mangled text files, and corrupted binary files when
|
||||||
|
* you download to stdout and redirect it to a file). */
|
||||||
|
|
||||||
|
if ((data->out)->_handle == NULL) {
|
||||||
|
fprintf(stderr, "_fsetmode\n");
|
||||||
|
_fsetmode(stdout, "b");
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
if((data->conf&(CONF_FTP|CONF_PROXY)) == CONF_FTP) {
|
if((data->conf&(CONF_FTP|CONF_PROXY)) == CONF_FTP) {
|
||||||
result = ftp(data, &bytecount, data->user, data->passwd, ppath);
|
result = ftp(data, &bytecount, data->user, data->passwd, ppath);
|
||||||
if(result)
|
if(result)
|
||||||
|
Loading…
Reference in New Issue
Block a user