From cd422e0927eca7344e3b7e1013022a9a75a25972 Mon Sep 17 00:00:00 2001 From: Azat Khuzhin Date: Fri, 9 Oct 2015 01:50:05 +0300 Subject: [PATCH] test/regress_http: fix compilation warnings (-Wmissing-field-initializers) --- test/regress_http.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/regress_http.c b/test/regress_http.c index 9f56f503..05806b38 100644 --- a/test/regress_http.c +++ b/test/regress_http.c @@ -1076,8 +1076,8 @@ http_persist_connection_test(void *arg) } static struct regress_dns_server_table search_table[] = { - { "localhost", "A", "127.0.0.1", 0 }, - { NULL, NULL, NULL, 0 } + { "localhost", "A", "127.0.0.1", 0, 0 }, + { NULL, NULL, NULL, 0, 0 } }; static void @@ -3898,8 +3898,8 @@ http_terminate_chunked_oneshot_test(void *arg) } static struct regress_dns_server_table ipv6_search_table[] = { - { "localhost", "AAAA", "::1", 0 }, - { NULL, NULL, NULL, 0 } + { "localhost", "AAAA", "::1", 0, 0 }, + { NULL, NULL, NULL, 0, 0 } }; static void -- 2.50.1