From 86553be84d071aee8464b2c2fa03858d12118852 Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Thu, 7 Sep 2017 13:56:58 -0700 Subject: [PATCH 35] Use "static const char domain[] =" * resolv/tst-resolv-qtypes.c (domain): Changed to "const char domain[] =". (cherry picked from commit 78bfa877b36e8f33c99cbe9a16eb73f5a2adc0c8) --- ChangeLog | 5 +++++ resolv/tst-resolv-qtypes.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index f9e423dbb3..96c461c441 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2017-09-07 H.J. Lu + + * resolv/tst-resolv-qtypes.c (domain): Changed to + "const char domain[] =". + 2017-08-31 H.J. Lu [BZ #22051] diff --git a/resolv/tst-resolv-qtypes.c b/resolv/tst-resolv-qtypes.c index 06ea3dbd14..da3325f80c 100644 --- a/resolv/tst-resolv-qtypes.c +++ b/resolv/tst-resolv-qtypes.c @@ -50,7 +50,7 @@ response (const struct resolv_response_context *ctx, resolv_response_close_record (b); } -static const char * const domain = "www.example.com"; +static const char domain[] = "www.example.com"; static int wrap_res_query (int type, unsigned char *answer, int answer_length)