diff options
author | corvid <corvid@lavabit.com> | 2010-01-09 23:49:58 +0000 |
---|---|---|
committer | corvid <corvid@lavabit.com> | 2010-01-09 23:49:58 +0000 |
commit | fb526d09322f7cc967acb30c4868522d0ced14b1 (patch) | |
tree | ae6505962d3bd3c94d48c33587820ac15b6777ce | |
parent | 8a6afd47d0d9009909d2e557c46b45914d3c11b8 (diff) |
unnecessary test
-rw-r--r-- | dpi/cookies.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dpi/cookies.c b/dpi/cookies.c index 94efbd6e..23ed027f 100644 --- a/dpi/cookies.c +++ b/dpi/cookies.c @@ -797,7 +797,7 @@ static bool_t Cookies_path_matches(const char *url_path, ret = (!strncmp(cookie_path, url_path, c_len) && ((c_len == u_len) || (c_len > 0 && cookie_path[c_len - 1] == '/') || - (u_len > c_len && url_path[c_len] == '/'))); + (url_path[c_len] == '/'))); } return ret; } |