1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2025-06-28 11:55:08 +03:00

spelling: driver

This commit is contained in:
Josh Soref 2018-02-28 03:13:52 +00:00
parent 661df047e3
commit b3f0dbdc1a
2 changed files with 4 additions and 4 deletions

View File

@ -8452,7 +8452,7 @@ bool MsUpgradeVLanWithoutLock(char *tag_name, char *connection_tag_name, char *i
Free(reg_key); Free(reg_key);
// Get the .sys file name that is currently being used // 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()) if (MsIsInfCatalogRequired())
{ {
@ -12014,7 +12014,7 @@ TOKEN_LIST *MsEnumNeoDriverFilenames()
for (i = 0;i < neos->NumTokens;i++) for (i = 0;i < neos->NumTokens;i++)
{ {
char filename[MAX_PATH]; char filename[MAX_PATH];
if (MsGetNeoDeiverFilename(filename, sizeof(filename), neos->Token[i])) if (MsGetNeoDriverFilename(filename, sizeof(filename), neos->Token[i]))
{ {
Add(o, CopyStr(filename)); Add(o, CopyStr(filename));
} }
@ -12029,7 +12029,7 @@ TOKEN_LIST *MsEnumNeoDriverFilenames()
} }
// Get the driver file name of Neo // 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 tmp[MAX_SIZE];
char *ret; char *ret;

View File

@ -764,7 +764,7 @@ bool MsCheckLogon(wchar_t *username, char *password);
bool MsIsPasswordEmpty(wchar_t *username); bool MsIsPasswordEmpty(wchar_t *username);
TOKEN_LIST *MsEnumNetworkAdapters(char *start_with_name, char *start_with_name_2); TOKEN_LIST *MsEnumNetworkAdapters(char *start_with_name, char *start_with_name_2);
TOKEN_LIST *MsEnumNetworkAdaptersNeo(); 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); bool MsMakeNewNeoDriverFilename(char *name, UINT size);
void MsGenerateNeoDriverFilenameFromInt(char *name, UINT size, UINT n); void MsGenerateNeoDriverFilenameFromInt(char *name, UINT size, UINT n);
TOKEN_LIST *MsEnumNeoDriverFilenames(); TOKEN_LIST *MsEnumNeoDriverFilenames();