lynxis lazus has uploaded this change for review. (
https://gerrit.osmocom.org/c/libosmocore/+/22933 )
Change subject: gprs_ns2: fix typo in function name ns2_load_sharing_modulo
......................................................................
gprs_ns2: fix typo in function name ns2_load_sharing_modulo
It's a modulo operation, not modulo*r*.
Change-Id: I0345f2bcac9c57cf7efe8ff27fda4d049e04d5cc
---
M src/gb/gprs_ns2.c
1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmocore refs/changes/33/22933/1
diff --git a/src/gb/gprs_ns2.c b/src/gb/gprs_ns2.c
index c47fa6f..1762e25 100644
--- a/src/gb/gprs_ns2.c
+++ b/src/gb/gprs_ns2.c
@@ -360,7 +360,7 @@
}
/* 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)
@@ -437,7 +437,7 @@
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:
--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/22933
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: I0345f2bcac9c57cf7efe8ff27fda4d049e04d5cc
Gerrit-Change-Number: 22933
Gerrit-PatchSet: 1
Gerrit-Owner: lynxis lazus <[email protected]>
Gerrit-MessageType: newchange