aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDan Fandrich <dan@coneharvesters.com>2005-12-19 19:47:14 +0000
committerDan Fandrich <dan@coneharvesters.com>2005-12-19 19:47:14 +0000
commit178afd81a992b651416c9afffaa7200f61edc548 (patch)
tree144e2a8ce8f850c218fbb72e83c32989fb2cd513 /lib
parentd6eb1a7b9800139669cc05e6dbdffa996d038df6 (diff)
downloadgnurl-178afd81a992b651416c9afffaa7200f61edc548.tar.gz
gnurl-178afd81a992b651416c9afffaa7200f61edc548.tar.bz2
gnurl-178afd81a992b651416c9afffaa7200f61edc548.zip
Fixed lcc compiler warnings.
Diffstat (limited to 'lib')
-rw-r--r--lib/ssluse.c6
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