diff options
author | Yang Tse <yangsita@gmail.com> | 2008-08-11 01:22:57 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2008-08-11 01:22:57 +0000 |
commit | 24b189071035e5b987c137b491532597158889b9 (patch) | |
tree | 8448afef2b1e7de8ee0ddcbf85e35a23de22a672 /src | |
parent | 3a1d28379a8a9c5ab7bf621c0d80d2ffeb0733ef (diff) |
s/SIZEOF_CURL_OFF_T/CURL_SIZEOF_CURL_OFF_T/g
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.c b/src/main.c index ceee05bdd..5b6fef738 100644 --- a/src/main.c +++ b/src/main.c @@ -212,7 +212,7 @@ typedef enum { /* Support uploading and resuming of >2GB files */ -#if defined(WIN32) && (SIZEOF_CURL_OFF_T > 4) +#if defined(WIN32) && (CURL_SIZEOF_CURL_OFF_T > 4) #define lseek(x,y,z) _lseeki64(x, y, z) #define struct_stat struct _stati64 #define stat(file,st) _stati64(file,st) @@ -1387,7 +1387,7 @@ static int str2num(long *val, const char *str) */ static int str2offset(curl_off_t *val, const char *str) { -#if SIZEOF_CURL_OFF_T > 4 +#if CURL_SIZEOF_CURL_OFF_T > 4 /* Ugly, but without going through a bunch of rigmarole, we don't have the * definitions for LLONG_{MIN,MAX} or LONG_LONG_{MIN,MAX}. */ @@ -3214,7 +3214,7 @@ static int my_seek(void *stream, curl_off_t offset, int whence) { struct InStruct *in=(struct InStruct *)stream; -#if (SIZEOF_CURL_OFF_T > SIZEOF_OFF_T) && !defined(lseek) +#if (CURL_SIZEOF_CURL_OFF_T > SIZEOF_OFF_T) && !defined(lseek) /* The sizeof check following here is only interesting if curl_off_t is larger than off_t, but also not on windows-like systems for which lseek is a defined macro that works around the 32bit off_t-problem and thus do |