mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2025-07-07 00:04:57 +03:00
Correct Spelling (#458)
* spelling: accepts * spelling: account * spelling: accept * spelling: accumulate * spelling: adapter * spelling: address * spelling: additional * spelling: aggressive * spelling: adhered * spelling: allowed * spelling: ambiguous * spelling: amount * spelling: anonymous * spelling: acquisition * spelling: assemble * spelling: associated * spelling: assigns * spelling: attach * spelling: attempt * spelling: attribute * spelling: authenticate * spelling: authentication * spelling: available * spelling: bridging * spelling: cascade * spelling: cancel * spelling: check * spelling: challenge * spelling: changing * spelling: characters * spelling: cloud * spelling: compare * spelling: communication * spelling: compatible * spelling: compatibility * spelling: completion * spelling: complete * spelling: computers * spelling: configure * spelling: configuration * spelling: conformant * spelling: connection * spelling: contains * spelling: continuously * spelling: continue * spelling: convert * spelling: counters * spelling: create * spelling: created * spelling: cumulate * spelling: currently * spelling: debugging * spelling: decryption * spelling: description * spelling: default * spelling: driver * spelling: delete * spelling: destination * spelling: disabled * spelling: different * spelling: dynamically * spelling: directory * spelling: disappeared * spelling: disable * spelling: doesn't * spelling: download * spelling: dropped * spelling: enable * spelling: established * spelling: ether * spelling: except * spelling: expired * spelling: field * spelling: following * spelling: forever * spelling: firewall * spelling: first * spelling: fragment * spelling: function * spelling: gateway * spelling: identifier * spelling: identify * spelling: incoming * spelling: information * spelling: initialize * spelling: injection * spelling: inner * spelling: instead * spelling: installation * spelling: inserted * spelling: integer * spelling: interrupt * spelling: intuitive * spelling: interval * spelling: january * spelling: keybytes * spelling: know * spelling: language * spelling: length * spelling: library * spelling: listener * spelling: maintain * spelling: modified * spelling: necessary * spelling: number * spelling: obsoleted * spelling: occurred * spelling: occurring * spelling: occur * spelling: original * spelling: omittable * spelling: omit * spelling: opening * spelling: operation * spelling: packet * spelling: parameters * spelling: pointed * spelling: popupmenuopen * spelling: privilege * spelling: product * spelling: protection * spelling: promiscuous * spelling: prompt * spelling: query * spelling: random * spelling: reconnection * spelling: revocation * spelling: received * spelling: red hat * spelling: registry * spelling: release * spelling: retrieve
This commit is contained in:
committed by
Moataz Elmasry
parent
03443ab1c4
commit
ac865f04fc
@ -3976,7 +3976,7 @@ void *MsLoadLibraryAsDataFile(char *name)
|
||||
return MsLoadLibraryAsDataFileW(name_w);
|
||||
}
|
||||
|
||||
// Simple LoadLibaray
|
||||
// Simple LoadLibrary
|
||||
void *MsLoadLibraryRawW(wchar_t *name)
|
||||
{
|
||||
// Validate arguments
|
||||
@ -6602,7 +6602,7 @@ UINT MsService(char *name, SERVICE_FUNCTION *start, SERVICE_FUNCTION *stop, UINT
|
||||
mode == SVC_MODE_STOP || mode == SVC_MODE_SERVICE) &&
|
||||
(ms->IsAdmin == false))
|
||||
{
|
||||
// Do not have Administrators privillage
|
||||
// Do not have Administrators privilege
|
||||
MsgBox(NULL, MB_ICONEXCLAMATION, _UU("SVC_NOT_ADMIN"));
|
||||
}
|
||||
else
|
||||
@ -6970,7 +6970,7 @@ UINT MsService(char *name, SERVICE_FUNCTION *start, SERVICE_FUNCTION *stop, UINT
|
||||
|
||||
case SVC_MODE_SERVICE:
|
||||
// Run as a service
|
||||
// Obsolated (2012.12.31) (Do this in the above code)
|
||||
// Obsoleted (2012.12.31) (Do this in the above code)
|
||||
//MsServiceMode(start, stop);
|
||||
break;
|
||||
|
||||
@ -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)
|
||||
@ -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;
|
||||
|
Reference in New Issue
Block a user