2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +00:00

Use EXIT_SUCCESS and EXIT_FAILURE

Instead of randomly using -1 or 1 as a failure status, properly utilize
the EXIT_FAILURE define that's platform specific (as it should be).
This commit is contained in:
Ondřej Surý
2024-02-07 14:50:38 +01:00
parent e140743e6a
commit 76997983fd
41 changed files with 153 additions and 150 deletions

View File

@@ -74,7 +74,7 @@ enable_fips_mode(void) {
if (isc_fips_set_mode(1) != ISC_R_SUCCESS) {
dst__openssl_toresult2("FIPS_mode_set", DST_R_OPENSSLFAILURE);
exit(1);
exit(EXIT_FAILURE);
}
#endif
}