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 0035e8d..63e1e76 100644
--- a/api/adapter.c
+++ b/api/adapter.c
@@ -541,7 +541,7 @@ CreateAdapterData(
HeapFree(ModuleHeap, 0, ValueStr);
/* Read the NetLuidIndex value. */
- Result = RegistryQueryDWORD(Key, L"NetLuidIndex", &(*Adapter)->LuidIndex);
+ Result = RegistryQueryDWORD(Key, L"NetLuidIndex", &(*Adapter)->LuidIndex, TRUE);
if (Result != ERROR_SUCCESS)
{
LOG(WINTUN_LOG_ERR, L"Failed to query NetLuidIndex value");
@@ -549,7 +549,7 @@ CreateAdapterData(
}
/* Read the NetLuidIndex value. */
- Result = RegistryQueryDWORD(Key, L"*IfType", &(*Adapter)->IfType);
+ Result = RegistryQueryDWORD(Key, L"*IfType", &(*Adapter)->IfType, TRUE);
if (Result != ERROR_SUCCESS)
{
LOG(WINTUN_LOG_ERR, L"Failed to query *IfType value");