diff options
author | corvid <corvid@lavabit.com> | 2011-09-16 02:57:43 +0000 |
---|---|---|
committer | corvid <corvid@lavabit.com> | 2011-09-16 02:57:43 +0000 |
commit | 7de1efa5e464b92522e8674c2e112d46188e16b5 (patch) | |
tree | 5d8030b72a9de657794c703e2bef47c4cd54148d /src | |
parent | c3a3d77518490724930ed7f64e5b9888bc3d2a92 (diff) |
don't print ALLOW MSGs in Capi_filters_test
Diffstat (limited to 'src')
-rw-r--r-- | src/capi.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -395,9 +395,10 @@ static bool_t Capi_filters_test(const DilloUrl *wanted, */ ret = a_Url_same_public_suffix(wanted, requester); } - - MSG("Capi_filters_test: %s from '%s' to '%s'\n", - ret ? "ALLOW" : "DENY", req_host, want_host); + if (ret == FALSE) { + MSG("Capi_filters_test: deny from '%s' to '%s'\n", req_host, + want_host); + } break; } case PREFS_FILTER_ALLOW_ALL: |