Skip to content
Snippets Groups Projects
Commit 178afd81 authored by Dan Fandrich's avatar Dan Fandrich
Browse files

Fixed lcc compiler warnings.

parent d6eb1a7b
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -366,9 +366,9 @@ static int synchnet(curl_socket_t f /* socket to flush */)
(struct sockaddr *)&from, &fromlen);
}
else
return j;
break;
}
/* we never reach this point */
return j;
}
/*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment