aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlexander Couzens <lynxis@fe80.eu>2021-02-16 17:36:25 +0100
committerlynxis lazus <lynxis@fe80.eu>2021-02-19 10:41:50 +0000
commit9e81a32286a82b3acf8e3c59a3fec24b88156964 (patch)
tree71bfe922cb38147572fc7ed65c65f87d39187ce9 /src
parentd8a8d980535468d1f8642cdcf796b2d675c7b8df (diff)
gprs_ns2: fix typo in function name ns2_load_sharing_modulo
It's a modulo operation, not modulo*r*. Change-Id: I0345f2bcac9c57cf7efe8ff27fda4d049e04d5cc
Diffstat (limited to 'src')
-rw-r--r--src/gb/gprs_ns2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gb/gprs_ns2.c b/src/gb/gprs_ns2.c
index e2907343..3699d62e 100644
--- a/src/gb/gprs_ns2.c
+++ b/src/gb/gprs_ns2.c
@@ -360,7 +360,7 @@ static struct gprs_ns2_vc *ns2_load_sharing_signal(struct gprs_ns2_nse *nse)
}
/* 4.4.1 Load Sharing function for the Frame Relay Sub-Network */
-static struct gprs_ns2_vc *ns2_load_sharing_modulor(
+static struct gprs_ns2_vc *ns2_load_sharing_modulo(
struct gprs_ns2_nse *nse,
uint16_t bvci,
uint32_t load_selector)
@@ -451,7 +451,7 @@ static struct gprs_ns2_vc *ns2_load_sharing(
switch (nse->ll) {
case GPRS_NS2_LL_FR:
- nsvc = ns2_load_sharing_modulor(nse, bvci, link_selector);
+ nsvc = ns2_load_sharing_modulo(nse, bvci, link_selector);
break;
case GPRS_NS2_LL_UDP:
default: