From: Frank Gevaerts Date: Mon, 14 Jan 2019 15:31:20 +0000 (+0100) Subject: cookie: fix comment typo (url_path_len -> uri_path_len) X-Git-Tag: curl-7_64_0~43 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c54ee668dfec73885ca801dcc835d0bb569c46e9;p=curl cookie: fix comment typo (url_path_len -> uri_path_len) Closes #3469 --- diff --git a/lib/cookie.c b/lib/cookie.c index dfa66ee7f..4fb992ac9 100644 --- a/lib/cookie.c +++ b/lib/cookie.c @@ -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;