diff options
author | Florian Weimer <fweimer@redhat.com> | 2024-08-01 10:39:30 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2024-08-01 10:39:30 +0200 |
commit | a91bc9c50a50b45025b475f62ffd0d74436b9219 (patch) | |
tree | 7bc39b7f8c4a4e46a03f82ccef014c9d7b893391 | |
parent | 54252394c25ddf0062e288d4a6ab7a885f8ae009 (diff) | |
download | glibc-fw/bug32042.tar.gz glibc-fw/bug32042.tar.xz glibc-fw/bug32042.zip |
resolv: Fix tst-resolv-short-response for older GCC (bug 32042) fw/bug32042
Previous GCC versions do not support the C23 change that allows labels on declarations.
-rw-r--r-- | resolv/tst-resolv-short-response.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/resolv/tst-resolv-short-response.c b/resolv/tst-resolv-short-response.c index be354ae1c7..9b06b0c176 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. */ |