From b3f0dbdc1a3ddd2e8c0e1700816d37721f47437b Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Wed, 28 Feb 2018 03:13:52 +0000 Subject: [PATCH] spelling: driver --- src/Mayaqua/Microsoft.c | 6 +++--- src/Mayaqua/Microsoft.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Mayaqua/Microsoft.c b/src/Mayaqua/Microsoft.c index 6d6b9039..cae92acf 100644 --- a/src/Mayaqua/Microsoft.c +++ b/src/Mayaqua/Microsoft.c @@ -8452,7 +8452,7 @@ bool MsUpgradeVLanWithoutLock(char *tag_name, char *connection_tag_name, char *i Free(reg_key); // Get the .sys file name that is currently being used - if (MsGetNeoDeiverFilename(neo_sys, sizeof(neo_sys), instance_name) == false) + if (MsGetNeoDriverFilename(neo_sys, sizeof(neo_sys), instance_name) == false) { if (MsIsInfCatalogRequired()) { @@ -12014,7 +12014,7 @@ TOKEN_LIST *MsEnumNeoDriverFilenames() for (i = 0;i < neos->NumTokens;i++) { char filename[MAX_PATH]; - if (MsGetNeoDeiverFilename(filename, sizeof(filename), neos->Token[i])) + if (MsGetNeoDriverFilename(filename, sizeof(filename), neos->Token[i])) { Add(o, CopyStr(filename)); } @@ -12029,7 +12029,7 @@ TOKEN_LIST *MsEnumNeoDriverFilenames() } // Get the driver file name of Neo -bool MsGetNeoDeiverFilename(char *name, UINT size, char *instance_name) +bool MsGetNeoDriverFilename(char *name, UINT size, char *instance_name) { char tmp[MAX_SIZE]; char *ret; diff --git a/src/Mayaqua/Microsoft.h b/src/Mayaqua/Microsoft.h index 59197b47..3343b5a9 100644 --- a/src/Mayaqua/Microsoft.h +++ b/src/Mayaqua/Microsoft.h @@ -764,7 +764,7 @@ bool MsCheckLogon(wchar_t *username, char *password); bool MsIsPasswordEmpty(wchar_t *username); TOKEN_LIST *MsEnumNetworkAdapters(char *start_with_name, char *start_with_name_2); TOKEN_LIST *MsEnumNetworkAdaptersNeo(); -bool MsGetNeoDeiverFilename(char *name, UINT size, char *instance_name); +bool MsGetNeoDriverFilename(char *name, UINT size, char *instance_name); bool MsMakeNewNeoDriverFilename(char *name, UINT size); void MsGenerateNeoDriverFilenameFromInt(char *name, UINT size, UINT n); TOKEN_LIST *MsEnumNeoDriverFilenames();