summaryrefslogtreecommitdiffhomepage
path: root/windows
diff options
context:
space:
mode:
authorDavid Lönnhager <david.l@mullvad.net>2021-11-17 14:41:36 +0100
committerDavid Lönnhager <david.l@mullvad.net>2021-12-07 14:39:53 +0100
commit5e908d041f8a1c1b59f3544b89e63a50f2ba6521 (patch)
tree57ff25e516b312a11fa69406b75c8d51da6ae5c9 /windows
parentea2ade1e2a7981d2e72f8149c9033982e4d53fcc (diff)
downloadmullvadvpn-5e908d041f8a1c1b59f3544b89e63a50f2ba6521.tar.xz
mullvadvpn-5e908d041f8a1c1b59f3544b89e63a50f2ba6521.zip
Update wireguard dll path
Diffstat (limited to 'windows')
-rw-r--r--windows/driverlogic/src/wireguard.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/windows/driverlogic/src/wireguard.h b/windows/driverlogic/src/wireguard.h
index ae3f7ee3d1..e99da56c05 100644
--- a/windows/driverlogic/src/wireguard.h
+++ b/windows/driverlogic/src/wireguard.h
@@ -10,7 +10,7 @@ public:
WireGuardNtDll() : dllHandle(nullptr)
{
- auto path = GetProcessModulePath().replace_filename(L"wireguard.dll");
+ auto path = GetProcessModulePath().replace_filename(L"mullvad-wireguard.dll");
dllHandle = LoadLibraryExW(path.c_str(), nullptr, LOAD_WITH_ALTERED_SEARCH_PATH);
if (nullptr == dllHandle)