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

spelling: maintain

This commit is contained in:
Josh Soref 2018-02-28 04:10:12 +00:00
parent 08d9f1ace7
commit 1050bee6c8
4 changed files with 4 additions and 4 deletions

View File

@ -5757,7 +5757,7 @@ void ProcessIKEInterrupts(IKE_SERVER *ike)
while (ike->StateHasChanged); while (ike->StateHasChanged);
// Maintenance of the thread list // Maintenance of the thread list
MainteThreadList(ike->ThreadList); MaintainThreadList(ike->ThreadList);
/*Debug("ike->ThreadList: %u\n", LIST_NUM(ike->ThreadList)); /*Debug("ike->ThreadList: %u\n", LIST_NUM(ike->ThreadList));
{ {
UINT i; UINT i;

View File

@ -2562,7 +2562,7 @@ void L2TPProcessInterrupts(L2TP_SERVER *l2tp)
// Maintenance the thread list // Maintenance the thread list
if (l2tp->IkeServer == NULL) if (l2tp->IkeServer == NULL)
{ {
MainteThreadList(l2tp->ThreadList); MaintainThreadList(l2tp->ThreadList);
//Debug("l2tp->ThreadList: %u\n", LIST_NUM(l2tp->ThreadList)); //Debug("l2tp->ThreadList: %u\n", LIST_NUM(l2tp->ThreadList));
} }
} }

View File

@ -423,7 +423,7 @@ void AddThreadToThreadList(LIST *o, THREAD *t)
} }
// Maintain thread list // Maintain thread list
void MainteThreadList(LIST *o) void MaintainThreadList(LIST *o)
{ {
UINT i; UINT i;
LIST *delete_list = NULL; LIST *delete_list = NULL;

View File

@ -274,7 +274,7 @@ UINT DoNothing();
LIST *NewThreadList(); LIST *NewThreadList();
void AddThreadToThreadList(LIST *o, THREAD *t); void AddThreadToThreadList(LIST *o, THREAD *t);
void DelThreadFromThreadList(LIST *o, THREAD *t); void DelThreadFromThreadList(LIST *o, THREAD *t);
void MainteThreadList(LIST *o); void MaintainThreadList(LIST *o);
void FreeThreadList(LIST *o); void FreeThreadList(LIST *o);
void StopThreadList(LIST *o); void StopThreadList(LIST *o);
void WaitAllThreadsWillBeStopped(LIST *o); void WaitAllThreadsWillBeStopped(LIST *o);