diff options
Diffstat (limited to 'ui-repolist.c')
-rw-r--r-- | ui-repolist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-repolist.c b/ui-repolist.c index 477a949..c2bcce1 100644 --- a/ui-repolist.c +++ b/ui-repolist.c | |||
@@ -99,7 +99,7 @@ static int is_in_url(struct cgit_repo *repo) | |||
99 | { | 99 | { |
100 | if (!ctx.qry.url) | 100 | if (!ctx.qry.url) |
101 | return 1; | 101 | return 1; |
102 | if (repo->url && !prefixcmp(repo->url, ctx.qry.url)) | 102 | if (repo->url && starts_with(repo->url, ctx.qry.url)) |
103 | return 1; | 103 | return 1; |
104 | return 0; | 104 | return 0; |
105 | } | 105 | } |