mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
Jrn fixed it to compile on win32 again
This commit is contained in:
parent
9195bb64d4
commit
0a1e002ca4
@ -97,6 +97,9 @@ CURLcode Curl_file_connect(struct connectdata *conn)
|
|||||||
char *actual_path = curl_unescape(conn->path, 0);
|
char *actual_path = curl_unescape(conn->path, 0);
|
||||||
struct FILE *file;
|
struct FILE *file;
|
||||||
int fd;
|
int fd;
|
||||||
|
#if defined(WIN32) || defined(__EMX__)
|
||||||
|
int i;
|
||||||
|
#endif
|
||||||
|
|
||||||
file = (struct FILE *)malloc(sizeof(struct FILE));
|
file = (struct FILE *)malloc(sizeof(struct FILE));
|
||||||
if(!file)
|
if(!file)
|
||||||
@ -106,8 +109,6 @@ CURLcode Curl_file_connect(struct connectdata *conn)
|
|||||||
conn->proto.file = file;
|
conn->proto.file = file;
|
||||||
|
|
||||||
#if defined(WIN32) || defined(__EMX__)
|
#if defined(WIN32) || defined(__EMX__)
|
||||||
int i;
|
|
||||||
|
|
||||||
/* change path separators from '/' to '\\' for Windows and OS/2 */
|
/* change path separators from '/' to '\\' for Windows and OS/2 */
|
||||||
for (i=0; actual_path[i] != '\0'; ++i)
|
for (i=0; actual_path[i] != '\0'; ++i)
|
||||||
if (actual_path[i] == '/')
|
if (actual_path[i] == '/')
|
||||||
|
Loading…
Reference in New Issue
Block a user