mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-31 06:25:31 +00:00
De-duplicate __FILE__, __LINE__
Mostly generated automatically with the following semantic patch, except where coccinelle was confused by #ifdef in lib/isc/net.c @@ expression list args; @@ - UNEXPECTED_ERROR(__FILE__, __LINE__, args) + UNEXPECTED_ERROR(args) @@ expression list args; @@ - FATAL_ERROR(__FILE__, __LINE__, args) + FATAL_ERROR(args)
This commit is contained in:
@@ -207,7 +207,7 @@ dns_rpz_type2str(dns_rpz_type_t type) {
|
||||
case DNS_RPZ_TYPE_BAD:
|
||||
break;
|
||||
}
|
||||
FATAL_ERROR(__FILE__, __LINE__, "impossible rpz type %d", type);
|
||||
FATAL_ERROR("impossible rpz type %d", type);
|
||||
return ("impossible");
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user