mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-31 14:01:18 +08: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 ec119972cb2598c04ec7d4219e20506006836f64)
This commit is contained in:
parent
3ac7ba61d2
commit
9184c13681
@ -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. */
|
||||
|
Loading…
x
Reference in New Issue
Block a user