mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-15 01:40:05 -04:00
Merge branch 'ondrej/fix-split-string-warnings-clang-12' into 'main'
Fix the clang 12 warnings with multi-line strings in string arrays See merge request isc-projects/bind9!4130
This commit is contained in:
commit
29a0c999a4
1 changed files with 4 additions and 4 deletions
|
|
@ -158,8 +158,8 @@ private_signing_totext_test(void **state) {
|
|||
const char *results[] = { "Signing with key 12345/RSASHA512",
|
||||
"Removing signatures for key 54321/RSASHA256",
|
||||
"Done signing with key 22222/NSEC3RSASHA1",
|
||||
"Done removing signatures for key "
|
||||
"33333/RSASHA1" };
|
||||
("Done removing signatures for key "
|
||||
"33333/RSASHA1") };
|
||||
int ncases = 4;
|
||||
|
||||
UNUSED(state);
|
||||
|
|
@ -193,8 +193,8 @@ private_nsec3_totext_test(void **state) {
|
|||
const char *results[] = { "Creating NSEC3 chain 1 0 1 BEEF",
|
||||
"Creating NSEC3 chain 1 1 10 DADD",
|
||||
"Pending NSEC3 chain 1 0 20 BEAD",
|
||||
"Removing NSEC3 chain 1 0 30 DEAF / creating "
|
||||
"NSEC chain",
|
||||
("Removing NSEC3 chain 1 0 30 DEAF / "
|
||||
"creating NSEC chain"),
|
||||
"Removing NSEC3 chain 1 0 100 FEEDABEE" };
|
||||
int ncases = 5;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue