minor fixes to avoid MIPSPro pedantic warnings

This commit is contained in:
Daniel Stenberg 2004-02-26 12:47:43 +00:00
parent a054e5baf3
commit 33eaf2e18b
1 changed files with 2 additions and 4 deletions

View File

@ -669,7 +669,7 @@ static int config_sortlist(struct apattern **sortlist, int *nsort,
str = q + 1; str = q + 1;
while (*q && *q != ';' && !isspace((unsigned char)*q)) while (*q && *q != ';' && !isspace((unsigned char)*q))
q++; q++;
if (ip_addr(str, q - str, &pat.mask) != 0) if (ip_addr(str, (int)(q - str), &pat.mask) != 0)
natural_mask(&pat); natural_mask(&pat);
} }
else else
@ -783,9 +783,7 @@ static char *try_config(char *s, const char *opt)
static const char *try_option(const char *p, const char *q, const char *opt) static const char *try_option(const char *p, const char *q, const char *opt)
{ {
int len; size_t len = strlen(opt);
len = strlen(opt);
return (q - p > len && strncmp(p, opt, len) == 0) ? p + len : NULL; return (q - p > len && strncmp(p, opt, len) == 0) ? p + len : NULL;
} }