From 6a9802e5b1ecd15e23048c51c8c3421f81daccee Mon Sep 17 00:00:00 2001 From: Willem Toorop Date: Fri, 12 Jul 2024 13:38:43 +0200 Subject: [PATCH] RESINFO became RFC --- configure.ac | 8 ++++---- ldns/rr.h | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index fab57fbc..25435273 100644 --- a/configure.ac +++ b/configure.ac @@ -731,12 +731,12 @@ case "$enable_rrtype_svcb_https" in AC_DEFINE_UNQUOTED([RRTYPE_SVCB_HTTPS], [], [Define this to enable RR types SVCB and HTTPS.]) ;; esac -AC_ARG_ENABLE(rrtype-resinfo, AS_HELP_STRING([--enable-rrtype-resinfo],[Enable RR type RESINFO.])) +AC_ARG_ENABLE(rrtype-resinfo, AS_HELP_STRING([--enable-rrtype-resinfo],[Disable RR type RESINFO.])) case "$enable_rrtype_resinfo" in - yes) - AC_DEFINE_UNQUOTED([RRTYPE_RESINFO], [], [Define this to enable RR type RESINFO.]) + no) ;; - no|*) + yes|*) + AC_DEFINE_UNQUOTED([RRTYPE_RESINFO], [], [Define this to enable RR type RESINFO.]) ;; esac diff --git a/ldns/rr.h b/ldns/rr.h index a42ff7a6..9431c6f4 100644 --- a/ldns/rr.h +++ b/ldns/rr.h @@ -228,7 +228,7 @@ enum ldns_enum_rr_type /** RFC 8777 **/ LDNS_RR_TYPE_AMTRELAY = 260, - /** draft-ietf-add-resolver-info */ + /** RFC 9606 */ LDNS_RR_TYPE_RESINFO = 261, /** DNSSEC Trust Authorities */