mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 23:00:07 +00:00
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 ec119972cb
)
This commit is contained in:
parent
3ac7ba61d2
commit
9184c13681
@ -33,8 +33,10 @@ response (const struct resolv_response_context *ctx,
|
|||||||
{
|
{
|
||||||
case 0:
|
case 0:
|
||||||
/* First server times out. */
|
/* First server times out. */
|
||||||
|
{
|
||||||
struct resolv_response_flags flags = {.rcode = rcode};
|
struct resolv_response_flags flags = {.rcode = rcode};
|
||||||
resolv_response_init (b, flags);
|
resolv_response_init (b, flags);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case 1:
|
case 1:
|
||||||
/* Second server sends reply. */
|
/* Second server sends reply. */
|
||||||
|
Loading…
Reference in New Issue
Block a user