diff --git a/authd/providers/blacklist.c b/authd/providers/blacklist.c index be1b194d..769a34a4 100644 --- a/authd/providers/blacklist.c +++ b/authd/providers/blacklist.c @@ -349,11 +349,8 @@ blacklists_start(struct auth_client *auth) lrb_assert(get_provider_data(auth, SELF_PID) == NULL); if(!rb_dlink_list_length(&blacklist_list)) - { /* Nothing to do... */ - notice_client(auth->cid, "*** No DNS blacklists configured, not checking your IP"); return true; - } set_provider_data(auth, SELF_PID, rb_malloc(sizeof(struct blacklist_user))); diff --git a/authd/providers/opm.c b/authd/providers/opm.c index ce30e749..746604b5 100644 --- a/authd/providers/opm.c +++ b/authd/providers/opm.c @@ -626,11 +626,8 @@ opm_start(struct auth_client *auth) lrb_assert(get_provider_data(auth, SELF_PID) == NULL); if(!opm_enable || rb_dlink_list_length(&proxy_scanners) == 0) - { /* Nothing to do... */ - notice_client(auth->cid, "*** Proxy scanning disabled, not scanning"); return true; - } set_provider_data(auth, SELF_PID, rb_malloc(sizeof(struct opm_lookup)));