From 1050bee6c8234b3b44bbbe37935d67694a5f4ca0 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Wed, 28 Feb 2018 04:10:12 +0000 Subject: [PATCH] spelling: maintain --- src/Cedar/IPsec_IKE.c | 2 +- src/Cedar/IPsec_L2TP.c | 2 +- src/Mayaqua/Kernel.c | 2 +- src/Mayaqua/Kernel.h | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Cedar/IPsec_IKE.c b/src/Cedar/IPsec_IKE.c index 90d1bec8..9c7bc425 100644 --- a/src/Cedar/IPsec_IKE.c +++ b/src/Cedar/IPsec_IKE.c @@ -5757,7 +5757,7 @@ void ProcessIKEInterrupts(IKE_SERVER *ike) while (ike->StateHasChanged); // Maintenance of the thread list - MainteThreadList(ike->ThreadList); + MaintainThreadList(ike->ThreadList); /*Debug("ike->ThreadList: %u\n", LIST_NUM(ike->ThreadList)); { UINT i; diff --git a/src/Cedar/IPsec_L2TP.c b/src/Cedar/IPsec_L2TP.c index 4c9f1e7b..b33471ef 100644 --- a/src/Cedar/IPsec_L2TP.c +++ b/src/Cedar/IPsec_L2TP.c @@ -2562,7 +2562,7 @@ void L2TPProcessInterrupts(L2TP_SERVER *l2tp) // Maintenance the thread list if (l2tp->IkeServer == NULL) { - MainteThreadList(l2tp->ThreadList); + MaintainThreadList(l2tp->ThreadList); //Debug("l2tp->ThreadList: %u\n", LIST_NUM(l2tp->ThreadList)); } } diff --git a/src/Mayaqua/Kernel.c b/src/Mayaqua/Kernel.c index c1487d56..cb59c3fd 100644 --- a/src/Mayaqua/Kernel.c +++ b/src/Mayaqua/Kernel.c @@ -423,7 +423,7 @@ void AddThreadToThreadList(LIST *o, THREAD *t) } // Maintain thread list -void MainteThreadList(LIST *o) +void MaintainThreadList(LIST *o) { UINT i; LIST *delete_list = NULL; diff --git a/src/Mayaqua/Kernel.h b/src/Mayaqua/Kernel.h index 3e5ff427..c5d351fd 100644 --- a/src/Mayaqua/Kernel.h +++ b/src/Mayaqua/Kernel.h @@ -274,7 +274,7 @@ UINT DoNothing(); LIST *NewThreadList(); void AddThreadToThreadList(LIST *o, THREAD *t); void DelThreadFromThreadList(LIST *o, THREAD *t); -void MainteThreadList(LIST *o); +void MaintainThreadList(LIST *o); void FreeThreadList(LIST *o); void StopThreadList(LIST *o); void WaitAllThreadsWillBeStopped(LIST *o);