]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
re-split log message text
authorMark Andrews <marka@isc.org>
Tue, 2 Sep 2025 05:48:35 +0000 (15:48 +1000)
committerPetr Špaček <pspacek@isc.org>
Wed, 24 Sep 2025 12:14:28 +0000 (12:14 +0000)
lib/dns/resolver.c

index 37c8507dc7ea75a32c164c039c9b641682b68eb6..e343f63b936a595a047f6e167c1af3ab72235cec 100644 (file)
@@ -7319,8 +7319,7 @@ rctx_cookiecheck(respctx_t *rctx) {
                                            sizeof(addrbuf));
                        isc_log_write(DNS_LOGCATEGORY_RESOLVER,
                                      DNS_LOGMODULE_RESOLVER, ISC_LOG_INFO,
-                                     "missing expected cookie "
-                                     "from %s",
+                                     "missing expected cookie from %s",
                                      addrbuf);
                }
                rctx->retryopts |= DNS_FETCHOPT_TCP;
@@ -7354,8 +7353,7 @@ rctx_cookiecheck(respctx_t *rctx) {
                                            sizeof(addrbuf));
                        isc_log_write(DNS_LOGCATEGORY_RESOLVER,
                                      DNS_LOGMODULE_RESOLVER, ISC_LOG_INFO,
-                                     "missing required "
-                                     "cookie from %s",
+                                     "missing required cookie from %s",
                                      addrbuf);
                }
 
@@ -8699,11 +8697,10 @@ rctx_authority_negative(respctx_t *rctx) {
                                        if (rctx->ns_name != NULL &&
                                            name != rctx->ns_name)
                                        {
-                                               log_formerr(fctx, "multiple NS "
-                                                                 "RRsets "
-                                                                 "in "
-                                                                 "authority "
-                                                                 "section");
+                                               log_formerr(
+                                                       fctx,
+                                                       "multiple NS RRsets in "
+                                                       "authority section");
                                                rctx->result = DNS_R_FORMERR;
                                                return ISC_R_COMPLETE;
                                        }
@@ -8724,11 +8721,10 @@ rctx_authority_negative(respctx_t *rctx) {
                                        if (rctx->soa_name != NULL &&
                                            name != rctx->soa_name)
                                        {
-                                               log_formerr(fctx, "multiple "
-                                                                 "SOA RRs "
-                                                                 "in "
-                                                                 "authority "
-                                                                 "section");
+                                               log_formerr(
+                                                       fctx,
+                                                       "multiple SOA RRs in "
+                                                       "authority section");
                                                rctx->result = DNS_R_FORMERR;
                                                return ISC_R_COMPLETE;
                                        }
@@ -8817,8 +8813,8 @@ rctx_authority_dnssec(respctx_t *rctx) {
                                 * one DS RRset.
                                 */
                                if (rctx->ns_name == NULL) {
-                                       log_formerr(fctx, "DS with no "
-                                                         "referral");
+                                       log_formerr(fctx,
+                                                   "DS with no referral");
                                        rctx->result = DNS_R_FORMERR;
                                        return ISC_R_COMPLETE;
                                }
@@ -8827,10 +8823,9 @@ rctx_authority_dnssec(respctx_t *rctx) {
                                        if (rctx->ds_name != NULL &&
                                            name != rctx->ds_name)
                                        {
-                                               log_formerr(fctx, "DS doesn't "
-                                                                 "match "
-                                                                 "referral "
-                                                                 "(NS)");
+                                               log_formerr(fctx,
+                                                           "DS doesn't match "
+                                                           "referral (NS)");
                                                rctx->result = DNS_R_FORMERR;
                                                return ISC_R_COMPLETE;
                                        }