elide messages about not checking blacklists or scanning for proxies
This commit is contained in:
parent
5a22e9259b
commit
0807c97e69
2 changed files with 0 additions and 6 deletions
|
@ -349,11 +349,8 @@ blacklists_start(struct auth_client *auth)
|
||||||
lrb_assert(get_provider_data(auth, SELF_PID) == NULL);
|
lrb_assert(get_provider_data(auth, SELF_PID) == NULL);
|
||||||
|
|
||||||
if(!rb_dlink_list_length(&blacklist_list))
|
if(!rb_dlink_list_length(&blacklist_list))
|
||||||
{
|
|
||||||
/* Nothing to do... */
|
/* Nothing to do... */
|
||||||
notice_client(auth->cid, "*** No DNS blacklists configured, not checking your IP");
|
|
||||||
return true;
|
return true;
|
||||||
}
|
|
||||||
|
|
||||||
set_provider_data(auth, SELF_PID, rb_malloc(sizeof(struct blacklist_user)));
|
set_provider_data(auth, SELF_PID, rb_malloc(sizeof(struct blacklist_user)));
|
||||||
|
|
||||||
|
|
|
@ -626,11 +626,8 @@ opm_start(struct auth_client *auth)
|
||||||
lrb_assert(get_provider_data(auth, SELF_PID) == NULL);
|
lrb_assert(get_provider_data(auth, SELF_PID) == NULL);
|
||||||
|
|
||||||
if(!opm_enable || rb_dlink_list_length(&proxy_scanners) == 0)
|
if(!opm_enable || rb_dlink_list_length(&proxy_scanners) == 0)
|
||||||
{
|
|
||||||
/* Nothing to do... */
|
/* Nothing to do... */
|
||||||
notice_client(auth->cid, "*** Proxy scanning disabled, not scanning");
|
|
||||||
return true;
|
return true;
|
||||||
}
|
|
||||||
|
|
||||||
set_provider_data(auth, SELF_PID, rb_malloc(sizeof(struct opm_lookup)));
|
set_provider_data(auth, SELF_PID, rb_malloc(sizeof(struct opm_lookup)));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue