From ccfa2562a5cc3464dc4ebc25e014032d0e16e685 Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Mon, 31 Jan 2022 17:35:00 +1100 Subject: [PATCH] Remove spurious 'debugging = true;' This appears to be left over from the developement phase while adding reference counting to the lookup structure. (cherry picked from commit c068c3c771926a2d64be6aa1a7e4f8673101357c) --- bin/dig/nslookup.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/bin/dig/nslookup.c b/bin/dig/nslookup.c index 95c0767365..d5ce6f7900 100644 --- a/bin/dig/nslookup.c +++ b/bin/dig/nslookup.c @@ -621,8 +621,6 @@ static void setoption(char *opt) { size_t l = strlen(opt); - debugging = true; - #define CHECKOPT(A, N) \ ((l >= N) && (l < sizeof(A)) && (strncasecmp(opt, A, l) == 0))