mirror of git://sourceware.org/git/glibc.git
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
5a1d0633be
commit
ba003ee5de
|
@ -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…
Reference in New Issue