diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2005-12-19 19:47:14 +0000 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2005-12-19 19:47:14 +0000 |
commit | 178afd81a992b651416c9afffaa7200f61edc548 (patch) | |
tree | 144e2a8ce8f850c218fbb72e83c32989fb2cd513 /lib/ssluse.c | |
parent | d6eb1a7b9800139669cc05e6dbdffa996d038df6 (diff) | |
download | curl-178afd81a992b651416c9afffaa7200f61edc548.tar.gz |
Fixed lcc compiler warnings.
Diffstat (limited to 'lib/ssluse.c')
-rw-r--r-- | lib/ssluse.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ssluse.c b/lib/ssluse.c index 674477ba1..fdc540e90 100644 --- a/lib/ssluse.c +++ b/lib/ssluse.c @@ -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 |