From f7d8b6c7626f8af632001b165518ed62794a88de Mon Sep 17 00:00:00 2001 From: Benjamin Schaaf Date: Fri, 31 May 2019 11:09:19 +1000 Subject: [PATCH] Make unix socket support work for vibe-core --- http/vibe/http/client.d | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/http/vibe/http/client.d b/http/vibe/http/client.d index 4cf29b1489..6be48cdc44 100644 --- a/http/vibe/http/client.d +++ b/http/vibe/http/client.d @@ -42,10 +42,7 @@ import std.socket : AddressFamily; version(Posix) { - version(VibeLibeventDriver) - { - version = UnixSocket; - } + version = UnixSocket; }