mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
[cookies] Slightly modified path.c
This commit is contained in:
parent
61e7b3f0b1
commit
8ba7176f81
@ -6,15 +6,9 @@ int
|
||||
is_path_prefix(unsigned char *cookiepath, unsigned char *requestpath)
|
||||
{
|
||||
int dl = strlen(cookiepath);
|
||||
int sl = strlen(requestpath);
|
||||
|
||||
if (dl > sl) return 0;
|
||||
|
||||
if (memcmp(cookiepath, requestpath, dl)) return 0;
|
||||
|
||||
if (dl == sl) return 1;
|
||||
|
||||
if (cookiepath[dl - 1] == '/') return 1;
|
||||
|
||||
return (requestpath[dl] == '/');
|
||||
return (!memcmp(cookiepath, requestpath, dl)
|
||||
&& (cookiepath[dl - 1] == '/' || requestpath[dl] == '/' || requestpath[dl] == '\0'));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user