From bf097e2a314b63537f7e2fed6e68e6f1911916c6 Mon Sep 17 00:00:00 2001 From: Andreas Gustafsson Date: Thu, 20 Sep 2001 19:11:59 +0000 Subject: [PATCH] the +rec option was no longer recognized after +retry was added, due to a misplaced break statement --- bin/dig/dig.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/dig/dig.c b/bin/dig/dig.c index 816c52111e..415b3aafed 100644 --- a/bin/dig/dig.c +++ b/bin/dig/dig.c @@ -15,7 +15,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: dig.c,v 1.165 2001/09/20 17:15:02 bwelling Exp $ */ +/* $Id: dig.c,v 1.166 2001/09/20 19:11:59 gson Exp $ */ #include #include @@ -805,8 +805,8 @@ plus_option(char *option, isc_boolean_t is_batchfile, break; default: goto invalid_option; - break; } + break; default: goto invalid_option; }