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 committed by Daniel Stenberg
parent 07367e717a
commit c54ee668df
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2
1 changed files with 1 additions and 1 deletions

View File

@ -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;