cookie: fix comment typo (url_path_len -> uri_path_len)

Closes #3469
This commit is contained in:
Frank Gevaerts 2019-01-14 16:31:20 +01:00 коммит произвёл Daniel Stenberg
Родитель 07367e717a
Коммит c54ee668df
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 5CC908FDB71E12C2
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -223,7 +223,7 @@ static bool pathmatch(const char *cookie_path, const char *request_uri)
goto pathmatched;
}
/* here, cookie_path_len < url_path_len */
/* here, cookie_path_len < uri_path_len */
if(uri_path[cookie_path_len] == '/') {
ret = TRUE;
goto pathmatched;