summaryrefslogtreecommitdiff
path: root/content/urldb.c
diff options
context:
space:
mode:
Diffstat (limited to 'content/urldb.c')
-rw-r--r--content/urldb.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/content/urldb.c b/content/urldb.c
index e9bbb9012..f150aeb25 100644
--- a/content/urldb.c
+++ b/content/urldb.c
@@ -2056,13 +2056,13 @@ int urldb_search_match_string(const struct host_part *a,
return strcasecmp(a->part, b);
}
- end = b + strlen(b);
+ end = b + strlen(b) + 1;
while (b < end && a && a != &db_root) {
dot = strchr(b, '.');
if (!dot) {
/* last segment */
- dot = end;
+ dot = end - 1;
}
/* Compare strings (length limited) */
@@ -2119,13 +2119,13 @@ int urldb_search_match_prefix(const struct host_part *a,
return strncasecmp(a->part, b, strlen(b));
}
- end = b + strlen(b);
+ end = b + strlen(b) + 1;
while (b < end && a && a != &db_root) {
dot = strchr(b, '.');
if (!dot) {
/* last segment */
- dot = end;
+ dot = end - 1;
}
/* Compare strings (length limited) */
@@ -2134,7 +2134,7 @@ int urldb_search_match_prefix(const struct host_part *a,
return ret;
/* The strings matched */
- if (dot < end) {
+ if (dot < end - 1) {
/* Consider segment lengths only in the case
* where the prefix contains segments */
plen = strlen(a->part);