mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-06 20:58:33 +01: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>
This commit is contained in:
parent
ff0320bec2
commit
ec119972cb
1 changed files with 4 additions and 2 deletions
|
@ -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};
|
{
|
||||||
resolv_response_init (b, flags);
|
struct resolv_response_flags flags = {.rcode = rcode};
|
||||||
|
resolv_response_init (b, flags);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case 1:
|
case 1:
|
||||||
/* Second server sends reply. */
|
/* Second server sends reply. */
|
||||||
|
|
Loading…
Add table
Reference in a new issue