diff options
author | corvid <corvid@lavabit.com> | 2010-08-19 01:47:07 +0000 |
---|---|---|
committer | corvid <corvid@lavabit.com> | 2010-08-19 01:47:07 +0000 |
commit | 5f0fc0e48b8cbee7e1795935da0abff6627fd498 (patch) | |
tree | 5067e5c90be9a37ea74ee978594dc3884040d93b /dpi/cookies.c | |
parent | f955f6f8df4e6552e1424c28c1791916b6a6219a (diff) |
turn off some cookie MSGs
Diffstat (limited to 'dpi/cookies.c')
-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 3fd2d2b0..a5142224 100644 --- a/dpi/cookies.c +++ b/dpi/cookies.c @@ -833,7 +833,7 @@ static CookieData_t *Cookies_parse(char *cookie_str, const char *server_date) if (age > 0 && cookie->expires_at == (time_t) -1) { cookie->expires_at = cookies_future_time; } - MSG("Cookie to expire at %s", ctime(&cookie->expires_at)); + _MSG("Cookie to expire at %s", ctime(&cookie->expires_at)); expires = max_age = TRUE; } dFree(value); @@ -841,7 +841,7 @@ static CookieData_t *Cookies_parse(char *cookie_str, const char *server_date) if (!max_age) { value = Cookies_parse_value(&str); Cookies_unquote_string(value); - MSG("Expires attribute gives %s\n", value); + _MSG("Expires attribute gives %s\n", value); struct tm *tm = Cookies_parse_date(value); if (tm) { tm->tm_sec += Cookies_server_timediff(server_date); @@ -852,7 +852,7 @@ static CookieData_t *Cookies_parse(char *cookie_str, const char *server_date) */ cookie->expires_at = cookies_future_time; } - MSG("Cookie to expire at %s", ctime(&cookie->expires_at)); + _MSG("Cookie to expire at %s", ctime(&cookie->expires_at)); dFree(tm); } else { cookie->expires_at = (time_t) -1; |