From c54ee668dfec73885ca801dcc835d0bb569c46e9 Mon Sep 17 00:00:00 2001 From: Frank Gevaerts Date: Mon, 14 Jan 2019 16:31:20 +0100 Subject: [PATCH] cookie: fix comment typo (url_path_len -> uri_path_len) Closes #3469 --- lib/cookie.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;