2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

chg: ci: Update code formatting

Merge branch 'nicki/update-code-format' into 'main'

See merge request isc-projects/bind9!9533
This commit is contained in:
Ondřej Surý
2024-09-21 07:16:00 +00:00
4 changed files with 20 additions and 13 deletions

View File

@@ -1542,5 +1542,5 @@ ffbe6b95371c99b7fb05e6de17a8d6b7bf4f629f
b7de2c7cb959fa35099d72c3f9b13938348c74e6 b7de2c7cb959fa35099d72c3f9b13938348c74e6
# Reformat sources with up-to-date clang-format-19 # Reformat sources with up-to-date clang-format-19
ff69d07fed2619a9bedf5ccc18cf106b7dd49bef ff69d07fed2619a9bedf5ccc18cf106b7dd49bef
# Reformat shell scripts with shfmt # Reformat sources with up-to-date clang-format-19
4cb8b13987b930952238cc88e84272b8cf911933 ebb5bd9c0f079de8970b538fe48e5f5c60ea7ee9

View File

@@ -226,16 +226,16 @@ def domain_factory(domainname, domainlabel, todolist, grammar):
self.state.nested_parse(raw, self.content_offset, parsed) self.state.nested_parse(raw, self.content_offset, parsed)
return parsed return parsed
def transform_content(self, contentnode: addnodes.desc_content) -> None: def transform_content(self, content_node: addnodes.desc_content) -> None:
"""autogenerate content from structured data""" """autogenerate content from structured data"""
self.workaround_transform_content = True self.workaround_transform_content = True
if self.isc_short: if self.isc_short:
contentnode.insert(0, self.isc_short_node) content_node.insert(0, self.isc_short_node)
if self.isc_tags: if self.isc_tags:
tags = nodes.paragraph() tags = nodes.paragraph()
tags += nodes.strong(text="Tags: ") tags += nodes.strong(text="Tags: ")
tags += nodes.Text(", ".join(self.isc_tags)) tags += nodes.Text(", ".join(self.isc_tags))
contentnode.insert(0, tags) content_node.insert(0, tags)
iscconf = self.env.get_domain(domainname) iscconf = self.env.get_domain(domainname)
@@ -244,7 +244,7 @@ def domain_factory(domainname, domainlabel, todolist, grammar):
return # not defined in grammar, nothing to render return # not defined in grammar, nothing to render
blocks = self.format_blocks(iscconf.statement_blocks[name]) blocks = self.format_blocks(iscconf.statement_blocks[name])
contentnode.insert(0, blocks) content_node.insert(0, blocks)
grammars = iscconf.statement_grammar_groups[name] grammars = iscconf.statement_grammar_groups[name]
multi_grammar = len(grammars) > 1 multi_grammar = len(grammars) > 1
@@ -257,11 +257,11 @@ def domain_factory(domainname, domainlabel, todolist, grammar):
if "suppress_grammar" in self.options: if "suppress_grammar" in self.options:
continue continue
grammarnode = self.format_grammar(multi_grammar, grammar_grp) grammarnode = self.format_grammar(multi_grammar, grammar_grp)
contentnode.insert(0, grammarnode) content_node.insert(0, grammarnode)
warn = self.format_warnings(union_flags) warn = self.format_warnings(union_flags)
if len(warn): if len(warn):
contentnode.insert(0, warn) content_node.insert(0, warn)
def __init__(self, *args, **kwargs): def __init__(self, *args, **kwargs):
"""Compability with Sphinx < 3.0.0""" """Compability with Sphinx < 3.0.0"""

View File

@@ -117,7 +117,10 @@ struct dns_rdata {
ISC_LINK(dns_rdata_t) link; ISC_LINK(dns_rdata_t) link;
}; };
#define DNS_RDATA_INIT { NULL, 0, 0, 0, 0, { (void *)(-1), (void *)(-1) } } #define DNS_RDATA_INIT \
{ \
NULL, 0, 0, 0, 0, { (void *)(-1), (void *)(-1) } \
}
#define DNS_RDATA_CHECKINITIALIZED #define DNS_RDATA_CHECKINITIALIZED
#ifdef DNS_RDATA_CHECKINITIALIZED #ifdef DNS_RDATA_CHECKINITIALIZED

View File

@@ -78,8 +78,10 @@
#ifndef IN6ADDR_LOOPBACK_INIT #ifndef IN6ADDR_LOOPBACK_INIT
#ifdef s6_addr #ifdef s6_addr
/*% IPv6 address loopback init */ /*% IPv6 address loopback init */
#define IN6ADDR_LOOPBACK_INIT \ #define IN6ADDR_LOOPBACK_INIT \
{ { { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1 } } } { \
{ { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1 } } \
}
#else /* ifdef s6_addr */ #else /* ifdef s6_addr */
#define IN6ADDR_LOOPBACK_INIT \ #define IN6ADDR_LOOPBACK_INIT \
{ { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1 } } { { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1 } }
@@ -89,8 +91,10 @@
#ifndef IN6ADDR_V4MAPPED_INIT #ifndef IN6ADDR_V4MAPPED_INIT
#ifdef s6_addr #ifdef s6_addr
/*% IPv6 v4mapped prefix init */ /*% IPv6 v4mapped prefix init */
#define IN6ADDR_V4MAPPED_INIT \ #define IN6ADDR_V4MAPPED_INIT \
{ { { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xff, 0xff, 0, 0, 0, 0 } } } { \
{ { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xff, 0xff, 0, 0, 0, 0 } } \
}
#else /* ifdef s6_addr */ #else /* ifdef s6_addr */
#define IN6ADDR_V4MAPPED_INIT \ #define IN6ADDR_V4MAPPED_INIT \
{ { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xff, 0xff, 0, 0, 0, 0 } } { { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xff, 0xff, 0, 0, 0, 0 } }