diff options
Diffstat (limited to 'modules/m_dline.c')
-rw-r--r-- | modules/m_dline.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/m_dline.c b/modules/m_dline.c index 08591b0..1df92ef 100644 --- a/modules/m_dline.c +++ b/modules/m_dline.c @@ -192,7 +192,7 @@ mo_dline(struct Client *client_p, struct Client *source_p, if ((t = parse_netmask(dlhost, NULL, &bits)) == HM_HOST) { - if ((target_p = find_chasing(client_p, source_p, dlhost, NULL)) == NULL) + if ((target_p = find_chasing(source_p, dlhost, NULL)) == NULL) return; if (!MyConnect(target_p)) @@ -311,7 +311,7 @@ ms_dline(struct Client *client_p, struct Client *source_p, return; if ((t = parse_netmask(dlhost, NULL, &bits)) == HM_HOST) { - if ((target_p = find_chasing(client_p, source_p, dlhost, NULL)) == NULL) + if ((target_p = find_chasing(source_p, dlhost, NULL)) == NULL) return; if (!MyConnect(target_p)) |