mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-30 22:15:20 +00:00
483. [bug] nslookup: "set all" showed search but it was not
setable.
This commit is contained in:
3
CHANGES
3
CHANGES
@@ -1,3 +1,6 @@
|
|||||||
|
483. [bug] nslookup: "set all" showed search but it was not
|
||||||
|
setable.
|
||||||
|
|
||||||
482. [bug] nslookup: a plain "server" or "lserver" should be
|
482. [bug] nslookup: a plain "server" or "lserver" should be
|
||||||
treated as a lookup.
|
treated as a lookup.
|
||||||
|
|
||||||
|
@@ -15,7 +15,7 @@
|
|||||||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* $Id: nslookup.c,v 1.47 2000/09/21 12:25:42 marka Exp $ */
|
/* $Id: nslookup.c,v 1.48 2000/09/21 12:45:39 marka Exp $ */
|
||||||
|
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
|
|
||||||
@@ -681,6 +681,10 @@ setoption(char *opt) {
|
|||||||
debugging = ISC_TRUE;
|
debugging = ISC_TRUE;
|
||||||
} else if (strncasecmp(opt, "nod2", 4) == 0) {
|
} else if (strncasecmp(opt, "nod2", 4) == 0) {
|
||||||
debugging = ISC_FALSE;
|
debugging = ISC_FALSE;
|
||||||
|
} else if (strncasecmp(opt, "search",3) == 0) {
|
||||||
|
usesearch = ISC_TRUE;
|
||||||
|
} else if (strncasecmp(opt, "nosearch",5) == 0) {
|
||||||
|
usesearch = ISC_FALSE;
|
||||||
} else if (strncasecmp(opt, "sil",3) == 0) {
|
} else if (strncasecmp(opt, "sil",3) == 0) {
|
||||||
deprecation_msg = ISC_FALSE;
|
deprecation_msg = ISC_FALSE;
|
||||||
} else {
|
} else {
|
||||||
|
Reference in New Issue
Block a user