redirect: be more careful for different cgi setups

This commit is contained in:
Jason A. Donenfeld 2015-08-13 11:38:27 +02:00
parent da1d4c7776
commit 622e64d5f2
1 changed files with 4 additions and 1 deletions

5
cmd.c
View File

@ -46,7 +46,10 @@ static void about_fn(void)
static void about_pre(void)
{
if (ctx.repo && !ctx.qry.path && ctx.qry.url[strlen(ctx.qry.url) - 1] != '/')
if (ctx.repo &&
!ctx.qry.path &&
ctx.qry.url[strlen(ctx.qry.url) - 1] != '/' &&
ctx.env.path_info[strlen(ctx.env.path_info) - 1] != '/')
cgit_redirect(fmtalloc("%s/", cgit_currenturl()), true);
}