1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

less long => int implicit conversion warnings

This commit is contained in:
Daniel Stenberg 2004-09-20 13:21:48 +00:00
parent be1df3ca0a
commit 2de62cb06f

View File

@ -224,11 +224,11 @@ static time_t Curl_parsedate(const char *date)
time_t t = 0; time_t t = 0;
int wdaynum=-1; /* day of the week number, 0-6 (mon-sun) */ int wdaynum=-1; /* day of the week number, 0-6 (mon-sun) */
int monnum=-1; /* month of the year number, 0-11 */ int monnum=-1; /* month of the year number, 0-11 */
long mdaynum=-1; /* day of month, 1 - 31 */ int mdaynum=-1; /* day of month, 1 - 31 */
int hournum=-1; int hournum=-1;
int minnum=-1; int minnum=-1;
int secnum=-1; int secnum=-1;
long yearnum=-1; int yearnum=-1;
int tzoff=-1; int tzoff=-1;
struct tm tm; struct tm tm;
enum assume dignext = DATE_MDAY; enum assume dignext = DATE_MDAY;
@ -273,7 +273,7 @@ static time_t Curl_parsedate(const char *date)
} }
else if(isdigit((int)*date)) { else if(isdigit((int)*date)) {
/* a digit */ /* a digit */
long val; int val;
char *end; char *end;
if((secnum == -1) && if((secnum == -1) &&
(3 == sscanf(date, "%02d:%02d:%02d", &hournum, &minnum, &secnum))) { (3 == sscanf(date, "%02d:%02d:%02d", &hournum, &minnum, &secnum))) {
@ -282,7 +282,7 @@ static time_t Curl_parsedate(const char *date)
found = TRUE; found = TRUE;
} }
else { else {
val = strtol(date, &end, 10); val = (int)strtol(date, &end, 10);
if((tzoff == -1) && if((tzoff == -1) &&
((end - date) == 4) && ((end - date) == 4) &&