You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.1 KiB
30 lines
1.1 KiB
commit 5a5eb72d8ee4783c28fead080143d53cac993e1d
|
|
Author: Florian Weimer <fweimer@redhat.com>
|
|
Date: Thu Aug 1 10:46:10 2024 +0200
|
|
|
|
resolv: Fix tst-resolv-short-response for older GCC (bug 32042)
|
|
|
|
Previous GCC versions do not support the C23 change that
|
|
allows labels on declarations.
|
|
|
|
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
|
|
(cherry picked from commit ec119972cb2598c04ec7d4219e20506006836f64)
|
|
|
|
diff --git a/resolv/tst-resolv-short-response.c b/resolv/tst-resolv-short-response.c
|
|
index be354ae1c7f2a81a..9b06b0c1762f860c 100644
|
|
--- a/resolv/tst-resolv-short-response.c
|
|
+++ b/resolv/tst-resolv-short-response.c
|
|
@@ -33,8 +33,10 @@ response (const struct resolv_response_context *ctx,
|
|
{
|
|
case 0:
|
|
/* First server times out. */
|
|
- struct resolv_response_flags flags = {.rcode = rcode};
|
|
- resolv_response_init (b, flags);
|
|
+ {
|
|
+ struct resolv_response_flags flags = {.rcode = rcode};
|
|
+ resolv_response_init (b, flags);
|
|
+ }
|
|
break;
|
|
case 1:
|
|
/* Second server sends reply. */
|