From 62969405d9505035542198783650e64c98c2b0e2 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Wed, 28 Feb 2018 05:16:41 +0000 Subject: [PATCH] spelling: registry --- src/Mayaqua/Microsoft.c | 2 +- src/Mayaqua/Microsoft.h | 2 +- src/Neo/NDIS5.c | 4 ++-- src/Neo/NDIS5.h | 2 +- src/Neo6/NDIS6.c | 4 ++-- src/Neo6/NDIS6.h | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/Mayaqua/Microsoft.c b/src/Mayaqua/Microsoft.c index dbdccfb4..c1b1b50e 100644 --- a/src/Mayaqua/Microsoft.c +++ b/src/Mayaqua/Microsoft.c @@ -7346,7 +7346,7 @@ bool MsIsRemoteDesktopEnabled() } // Examine whether the remote desktop becomes available by registry operation -bool MsIsRemoteDesktopCanEnableByRegistory() +bool MsIsRemoteDesktopCanEnableByRegistry() { OS_INFO *info = GetOsInfo(); if (MsIsRemoteDesktopAvailable() == false) diff --git a/src/Mayaqua/Microsoft.h b/src/Mayaqua/Microsoft.h index 3343b5a9..68ab004f 100644 --- a/src/Mayaqua/Microsoft.h +++ b/src/Mayaqua/Microsoft.h @@ -1052,7 +1052,7 @@ UINT64 MsGetScreenSaverTimeout(); void *MsNoSleepStart(bool no_screensaver); void MsNoSleepEnd(void *p); bool MsIsRemoteDesktopAvailable(); -bool MsIsRemoteDesktopCanEnableByRegistory(); +bool MsIsRemoteDesktopCanEnableByRegistry(); bool MsIsRemoteDesktopEnabled(); bool MsEnableRemoteDesktop(); diff --git a/src/Neo/NDIS5.c b/src/Neo/NDIS5.c index 63ae4f4d..06477ef2 100644 --- a/src/Neo/NDIS5.c +++ b/src/Neo/NDIS5.c @@ -268,7 +268,7 @@ NDIS_STATUS NeoNdisInit(NDIS_STATUS *OpenErrorStatus, } // Read the information from the registry - if (NeoLoadRegistory() == FALSE) + if (NeoLoadRegistry() == FALSE) { // Failure ctx->Initing = FALSE; @@ -688,7 +688,7 @@ void NeoFreeControlDevice() // Read the information from the registry -BOOL NeoLoadRegistory() +BOOL NeoLoadRegistry() { void *buf; NDIS_STATUS ret; diff --git a/src/Neo/NDIS5.h b/src/Neo/NDIS5.h index 175ce14c..c83d15fa 100644 --- a/src/Neo/NDIS5.h +++ b/src/Neo/NDIS5.h @@ -282,7 +282,7 @@ void NeoNdisSendPackets(NDIS_HANDLE MiniportAdapterContext, NDIS_STATUS NeoNdisSend(NDIS_HANDLE MiniportAdapterContext, NDIS_PACKET *Packet, UINT Flags); BOOL NeoNdisSendPacketsHaltCheck(NDIS_PACKET **PacketArray, UINT NumberOfPackets); -BOOL NeoLoadRegistory(); +BOOL NeoLoadRegistry(); void NeoInitControlDevice(); void NeoFreeControlDevice(); NTSTATUS NeoNdisDispatch(DEVICE_OBJECT *DeviceObject, IRP *Irp); diff --git a/src/Neo6/NDIS6.c b/src/Neo6/NDIS6.c index d9a8fe1d..3e960a8e 100644 --- a/src/Neo6/NDIS6.c +++ b/src/Neo6/NDIS6.c @@ -310,7 +310,7 @@ NDIS_STATUS NeoNdisInitEx(NDIS_HANDLE MiniportAdapterHandle, } // Read the information from the registry - if (NeoLoadRegistory() == FALSE) + if (NeoLoadRegistry() == FALSE) { // Failure ctx->Initing = FALSE; @@ -749,7 +749,7 @@ void NeoFreeControlDevice() // Read the information from the registry -BOOL NeoLoadRegistory() +BOOL NeoLoadRegistry() { void *buf; NDIS_STATUS ret; diff --git a/src/Neo6/NDIS6.h b/src/Neo6/NDIS6.h index 9e02d065..1fb5b517 100644 --- a/src/Neo6/NDIS6.h +++ b/src/Neo6/NDIS6.h @@ -240,7 +240,7 @@ void NeoNdisSendNetBufferLists(NDIS_HANDLE MiniportAdapterContext, NDIS_PORT_NUMBER PortNumber, ULONG SendFlags); void NeoNdisSetNetBufferListsStatus(NET_BUFFER_LIST *nbl, UINT status); -BOOL NeoLoadRegistory(); +BOOL NeoLoadRegistry(); void NeoInitControlDevice(); void NeoFreeControlDevice(); NTSTATUS NeoNdisDispatch(DEVICE_OBJECT *DeviceObject, IRP *Irp);