mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
fixed a "comparison between signed and unsigned" warning
This commit is contained in:
parent
4515d06465
commit
4ba7ef34d1
@ -784,7 +784,7 @@ static char *try_config(char *s, const char *opt)
|
||||
static const char *try_option(const char *p, const char *q, const char *opt)
|
||||
{
|
||||
size_t len = strlen(opt);
|
||||
return (q - p > len && strncmp(p, opt, len) == 0) ? p + len : NULL;
|
||||
return ((size_t)(q - p) > len && !strncmp(p, opt, len)) ? &p[len] : NULL;
|
||||
}
|
||||
|
||||
static int ip_addr(const char *s, int len, struct in_addr *addr)
|
||||
|
Loading…
Reference in New Issue
Block a user