From 178afd81a992b651416c9afffaa7200f61edc548 Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Mon, 19 Dec 2005 19:47:14 +0000 Subject: Fixed lcc compiler warnings. --- lib/ssluse.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib') 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 -- cgit v1.2.3