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

1242. [bug] named-checkzone failed if a journal existed. [RT #2657]

This commit is contained in:
Mark Andrews
2002-04-02 06:54:07 +00:00
parent abc93ada82
commit 7791dd06ea
9 changed files with 45 additions and 9 deletions

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: named-checkzone.c,v 1.20 2002/02/20 03:32:53 marka Exp $ */
/* $Id: named-checkzone.c,v 1.21 2002/04/02 06:54:06 marka Exp $ */
#include <config.h>
@@ -81,7 +81,7 @@ main(int argc, char **argv) {
char *classname = classname_in;
const char *workdir = NULL;
while ((c = isc_commandline_parse(argc, argv, "c:dqist:vw:")) != EOF) {
while ((c = isc_commandline_parse(argc, argv, "c:dimqst:vw:")) != EOF) {
switch (c) {
case 'c':
classname = isc_commandline_argument;
@@ -91,6 +91,10 @@ main(int argc, char **argv) {
debug++;
break;
case 'm':
nomerge = ISC_FALSE;
break;
case 'q':
quiet++;
break;