mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 13:20:00 -04:00
1142. [bug] dnssec-signzone would fail to delete temporary files
in some failure cases. [RT #2144]
This commit is contained in:
parent
b541c10d04
commit
8771fbe4a2
2 changed files with 6 additions and 6 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,3 +1,6 @@
|
|||
1142. [bug] dnssec-signzone would fail to delete temporary files
|
||||
in some failure cases. [RT #2144]
|
||||
|
||||
1141. [bug] When named rejected a control message, it would
|
||||
leak a file descriptor and memory.
|
||||
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: dnssectool.c,v 1.35 2001/09/21 00:17:00 bwelling Exp $ */
|
||||
/* $Id: dnssectool.c,v 1.36 2001/11/27 22:08:58 bwelling Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
|
@ -76,11 +76,8 @@ setfatalcallback(fatalcallback_t *callback) {
|
|||
|
||||
void
|
||||
check_result(isc_result_t result, const char *message) {
|
||||
if (result != ISC_R_SUCCESS) {
|
||||
fprintf(stderr, "%s: %s: %s\n", program, message,
|
||||
isc_result_totext(result));
|
||||
exit(1);
|
||||
}
|
||||
if (result != ISC_R_SUCCESS)
|
||||
fatal("%s: %s", message, isc_result_totext(result));
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Reference in a new issue