warning squashed in convert_uri_to_file_name()

This commit is contained in:
Sergey Lyubka 2014-03-05 01:59:58 +00:00
parent f639409533
commit 41b3c1b23e

View File

@ -2216,7 +2216,7 @@ static int convert_uri_to_file_name(struct connection *conn, char *buf,
// Perform virtual hosting rewrites
if (rewrites != NULL && domain != NULL) {
const char *colon = strchr(domain, ':');
int domain_len = colon == NULL ? strlen(domain) : (int) (colon - domain);
int domain_len = colon == NULL ? (int) strlen(domain) : colon - domain;
while ((rewrites = next_option(rewrites, &a, &b)) != NULL) {
if (a.len > 1 && a.ptr[0] == '@' && a.len == domain_len + 1 &&