aboutsummaryrefslogtreecommitdiffstats
path: root/src/gb/gprs_ns2_frgre.c
diff options
context:
space:
mode:
authorAlexander Couzens <lynxis@fe80.eu>2021-01-25 16:18:21 +0100
committerAlexander Couzens <lynxis@fe80.eu>2021-01-25 16:18:21 +0100
commitf7e2cace2c3dd4f97aa7bc2e708ef2ef934d34d9 (patch)
tree284667fda8548b636f43dfb72ba57501fa76c57d /src/gb/gprs_ns2_frgre.c
parent8dfc24cb470f4637e2fb20260e8a6e57553de6d9 (diff)
gprs_ns2: drop the public prefix gprs_ from all static functions/structs/..
Diffstat (limited to 'src/gb/gprs_ns2_frgre.c')
-rw-r--r--src/gb/gprs_ns2_frgre.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gb/gprs_ns2_frgre.c b/src/gb/gprs_ns2_frgre.c
index cc8500f2..5047af06 100644
--- a/src/gb/gprs_ns2_frgre.c
+++ b/src/gb/gprs_ns2_frgre.c
@@ -393,9 +393,9 @@ out_err:
return NULL;
}
-static int gprs_ns2_find_vc_by_dlci(struct gprs_ns2_vc_bind *bind,
- uint16_t dlci,
- struct gprs_ns2_vc **result)
+static int ns2_find_vc_by_dlci(struct gprs_ns2_vc_bind *bind,
+ uint16_t dlci,
+ struct gprs_ns2_vc **result)
{
struct gprs_ns2_vc *nsvc;
struct priv_vc *vcpriv;
@@ -434,7 +434,7 @@ static int handle_nsfrgre_read(struct osmo_fd *bfd)
goto out;
}
- rc = gprs_ns2_find_vc_by_dlci(bind, dlci, &nsvc);
+ rc = ns2_find_vc_by_dlci(bind, dlci, &nsvc);
if (rc) {
/* VC not found */
rc = ns2_create_vc(bind, msg, "newconnection", &reject, &nsvc);