aboutsummaryrefslogtreecommitdiffstats
path: root/api/adapter.c
diff options
context:
space:
mode:
Diffstat (limited to 'api/adapter.c')
-rw-r--r--api/adapter.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/api/adapter.c b/api/adapter.c
index 12b02fe..50d1929 100644
--- a/api/adapter.c
+++ b/api/adapter.c
@@ -1083,7 +1083,7 @@ static _Return_type_success_(return != FALSE) BOOL
}
DWORD WINAPI
-WintunGetVersion(void)
+WintunGetRunningDriverVersion(void)
{
PRTL_PROCESS_MODULES Modules;
ULONG BufferSize = 128 * 1024;
@@ -1127,7 +1127,7 @@ static BOOL
EnsureWintunUnloaded(void)
{
BOOL Loaded;
- for (int i = 0; (Loaded = WintunGetVersion() != 0) != FALSE && i < 300; ++i)
+ for (int i = 0; (Loaded = WintunGetRunningDriverVersion() != 0) != FALSE && i < 300; ++i)
Sleep(50);
return !Loaded;
}