mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 01:12:07 -04:00
dns_journal_print() nor returns DNS_R_NOJOURNAL if the journal does not exist.
This commit is contained in:
parent
4754765cc0
commit
33a2ca5a71
1 changed files with 1 additions and 1 deletions
|
|
@ -1849,7 +1849,7 @@ dns_journal_print(isc_mem_t *mctx, const char *filename, FILE *file) {
|
|||
result = dns_journal_open(mctx, filename, ISC_FALSE, &j);
|
||||
if (result == DNS_R_NOTFOUND) {
|
||||
isc_log_write(JOURNAL_DEBUG_LOGARGS(3), "no journal file");
|
||||
return (DNS_R_NOTFOUND);
|
||||
return (DNS_R_NOJOURNAL);
|
||||
}
|
||||
|
||||
if (result != DNS_R_SUCCESS) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue