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>
This commit is contained in:
Florian Weimer 2024-08-01 10:46:10 +02:00
parent ff0320bec2
commit ec119972cb

View File

@ -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. */