| 1595 |
|
buf); |
| 1596 |
|
|
| 1597 |
|
/* Still processing a DNS lookup? -> exit */ |
| 1598 |
< |
if (aconf->dns_query != NULL) |
| 1598 |
> |
if (aconf->dns_pending) |
| 1599 |
|
{ |
| 1600 |
< |
sendto_realops_flags(UMODE_ALL, L_OPER, |
| 1601 |
< |
"Error connecting to %s: Error during DNS lookup", conf->name); |
| 1600 |
> |
sendto_realops_flags(UMODE_ALL, L_ALL, |
| 1601 |
> |
"Error connecting to %s: DNS lookup for connect{} in progress.", |
| 1602 |
> |
conf->name); |
| 1603 |
> |
return (0); |
| 1604 |
> |
} |
| 1605 |
> |
|
| 1606 |
> |
if (aconf->dns_failed) |
| 1607 |
> |
{ |
| 1608 |
> |
sendto_realops_flags(UMODE_ALL, L_ALL, |
| 1609 |
> |
"Error connecting to %s: DNS lookup for connect{} failed.", |
| 1610 |
> |
conf->name); |
| 1611 |
|
return (0); |
| 1612 |
|
} |
| 1613 |
|
|