mirror of
https://github.com/isc-projects/bind9.git
synced 2026-03-10 10:11:39 -04:00
In couple places, we have missed INSIST(0) or ISC_UNREACHABLE() replacement on some branches with UNREACHABLE(). Replace all ISC_UNREACHABLE() or INSIST(0) calls with UNREACHABLE().
19 lines
179 B
Text
19 lines
179 B
Text
@@
|
|
@@
|
|
|
|
- INSIST(0);
|
|
+ UNREACHABLE();
|
|
... when != UNREACHABLE();
|
|
|
|
@@
|
|
@@
|
|
|
|
- INSIST(0);
|
|
- ISC_UNREACHABLE();
|
|
+ UNREACHABLE();
|
|
|
|
@@
|
|
@@
|
|
|
|
- UNREACHABLE();
|
|
UNREACHABLE();
|