[COMMITTED] resolv/tst-resolv-noaaaa: Support building for older C standards

Message ID 8735fuhs1a.fsf@oldenburg.str.redhat.com
State Committed
Commit 77536da3dea5af4d1859e4e754f07f47cf8d7d4c
Headers
Series [COMMITTED] resolv/tst-resolv-noaaaa: Support building for older C standards |

Commit Message

Florian Weimer June 24, 2022, 5:48 p.m. UTC
  This avoids a compilation error:

tst-resolv-noaaaa.c: In function 'response':
tst-resolv-noaaaa.c:74:11: error: a label can only be part of a statement and a declaration is not a statement
           char ipv4[4] = {192, 0, 2, i + 1};
           ^~~~
tst-resolv-noaaaa.c:79:11: error: a label can only be part of a statement and a declaration is not a statement
           char *name = xasprintf ("ptr-%d", i);
           ^~~~

---
 resolv/tst-resolv-noaaaa.c | 14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)
  

Patch

diff --git a/resolv/tst-resolv-noaaaa.c b/resolv/tst-resolv-noaaaa.c
index 56b25f88a5..6e0c6b6fb8 100644
--- a/resolv/tst-resolv-noaaaa.c
+++ b/resolv/tst-resolv-noaaaa.c
@@ -71,14 +71,18 @@  response (const struct resolv_response_context *ctx,
       switch (qtype)
         {
         case T_A:
-          char ipv4[4] = {192, 0, 2, i + 1};
-          resolv_response_add_data (b, &ipv4, sizeof (ipv4));
+          {
+            char ipv4[4] = {192, 0, 2, i + 1};
+            resolv_response_add_data (b, &ipv4, sizeof (ipv4));
+          }
           break;
 
         case T_PTR:
-          char *name = xasprintf ("ptr-%d", i);
-          resolv_response_add_name (b, name);
-          free (name);
+          {
+            char *name = xasprintf ("ptr-%d", i);
+            resolv_response_add_name (b, name);
+            free (name);
+          }
           break;
         }
       resolv_response_close_record (b);