mirror of
https://github.com/curl/curl.git
synced 2026-08-24 16:53:34 +03:00
Fixed lcc compiler warnings.
This commit is contained in:
parent
d6eb1a7b98
commit
178afd81a9
2 changed files with 5 additions and 5 deletions
|
|
@ -802,13 +802,13 @@ static int hostmatch(const char *hostname, const char *pattern)
|
|||
if (hostmatch(hostname++,pattern) == HOST_MATCH)
|
||||
return HOST_MATCH;
|
||||
}
|
||||
return HOST_NOMATCH;
|
||||
break;
|
||||
}
|
||||
|
||||
if (toupper(c) != toupper(*hostname++))
|
||||
return HOST_NOMATCH;
|
||||
break;
|
||||
}
|
||||
/* we never reach this point */
|
||||
return HOST_NOMATCH;
|
||||
}
|
||||
|
||||
static int
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue