diff options
author | corvid <corvid@lavabit.com> | 2011-09-16 06:08:39 +0000 |
---|---|---|
committer | corvid <corvid@lavabit.com> | 2011-09-16 06:08:39 +0000 |
commit | 5b86b6de4005eab7ab9b3c844bfab764b38f9ebe (patch) | |
tree | 87056a5da18e0f7b14fc7d6dae388f572c05a865 /dpi | |
parent | 3ddb676d547c90907e5d4631a63dcd1030e6f4e2 (diff) |
cookies dpi: MSG only when returning >0 cookies
Diffstat (limited to 'dpi')
-rw-r--r-- | dpi/cookies.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dpi/cookies.c b/dpi/cookies.c index 1a1b8a1f..734dc016 100644 --- a/dpi/cookies.c +++ b/dpi/cookies.c @@ -1282,10 +1282,10 @@ static char *Cookies_get(char *url_host, char *url_path, str = cookie_dstring->str; dStr_free(cookie_dstring, FALSE); - if (*str) + if (*str) { + MSG("%s GETTING: %s", url_host, str); cookies_use_counter++; - - MSG("%s GETTING: %s\n", url_host, str); + } return str; } |