The branch main has been updated by des:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=955963148a99cc2c45756db76811ef61c75fb5a8

commit 955963148a99cc2c45756db76811ef61c75fb5a8
Author:     Dag-Erling Smørgrav <[email protected]>
AuthorDate: 2026-06-29 15:53:58 +0000
Commit:     Dag-Erling Smørgrav <[email protected]>
CommitDate: 2026-06-29 15:53:58 +0000

    Revert "libc/resolv: Add no-debug and no-rotate options"
    
    This reverts commit 61697e9cd5cccc367a38f9851efebad4d7c2bb65.
---
 lib/libc/resolv/res_init.c |  4 ----
 share/man/man5/resolver.5  | 12 ------------
 2 files changed, 16 deletions(-)

diff --git a/lib/libc/resolv/res_init.c b/lib/libc/resolv/res_init.c
index c7eda833f3d5..a0cd381d0f0f 100644
--- a/lib/libc/resolv/res_init.c
+++ b/lib/libc/resolv/res_init.c
@@ -752,10 +752,6 @@ res_setoptions(res_state statp, const char *options, const 
char *source)
 #ifdef DEBUG
                        printf(";;\tdebug\n");
 #endif
-               } else if (res_match(cp, ep, "no-debug")) {
-                       statp->options &= ~RES_DEBUG;
-               } else if (res_match(cp, ep, "no-rotate")) {
-                       statp->options &= ~RES_ROTATE;
                } else if (res_match(cp, ep, "no-tld-query") ||
                    res_match(cp, ep, "no_tld_query")) {
                        statp->options |= RES_NOTLDQUERY;
diff --git a/share/man/man5/resolver.5 b/share/man/man5/resolver.5
index 690d8b10d4e2..135e56287b5f 100644
--- a/share/man/man5/resolver.5
+++ b/share/man/man5/resolver.5
@@ -203,18 +203,6 @@ Sets
 .Dv RES_NOCHECKNAME .
 Disables the check of incoming host names for invalid characters
 such as underscore, non-ASCII, or control characters.
-.It Cm no-debug
-Clears
-.Dv RES_DEBUG .
-See
-.Cm debug
-above.
-.It Cm no-rotate
-Clears
-.Dv RES_ROTATE .
-See
-.Cm rotate
-below.
 .It Cm no-tld-query
 tells the resolver not to attempt to resolve a top level domain name, that
 is, a name that contains no dots.

Reply via email to