]> granicus.if.org Git - libevent/commitdiff
test: do not use .fieldname in structure initializations (fixes win32)
authorAzat Khuzhin <a3at.mail@gmail.com>
Mon, 1 May 2017 18:56:27 +0000 (21:56 +0300)
committerAzat Khuzhin <a3at.mail@gmail.com>
Mon, 1 May 2017 18:57:23 +0000 (21:57 +0300)
Fixes: #497
test/regress_http.c

index e9ead77ec3de5490a2f711f589ebed17407039c8..58ccf1f74bc03bab97bd39717cb67f01278ca73a 100644 (file)
@@ -3607,7 +3607,7 @@ http_simple_test_impl(void *arg, int ssl, int dirty)
        struct evhttp_connection *evcon = NULL;
        struct evhttp_request *req = NULL;
        struct bufferevent *bev;
-       struct http_server hs = { .port = 0, .ssl = ssl, };
+       struct http_server hs = { 0, ssl, NULL, };
        struct evhttp *http = http_setup(&hs.port, data->base, ssl ? HTTP_BIND_SSL : 0);
 
        exit_base = data->base;
@@ -3650,7 +3650,7 @@ http_connection_retry_test_basic(void *arg, const char *addr, struct evdns_base
        struct evhttp_request *req = NULL;
        struct timeval tv, tv_start, tv_end;
        struct bufferevent *bev;
-       struct http_server hs = { .port = 0, .ssl = ssl, };
+       struct http_server hs = { 0, ssl, NULL, };
        struct evhttp *http = http_setup(&hs.port, data->base, ssl ? HTTP_BIND_SSL : 0);
 
        exit_base = data->base;