aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlexander Couzens <lynxis@fe80.eu>2020-12-09 01:41:24 +0100
committerHarald Welte <laforge@osmocom.org>2020-12-16 12:51:08 +0100
commit1e6c350a9f46f0851943450b766b373e9926e9e8 (patch)
tree2ac50c86d3c11520c02b02ddbcfaaa7734098992 /src
parentb644fd1f09eee4c5ab7bb0c16fd0d4c2cf1b139f (diff)
ns2: follow ns2 sns api changes
Diffstat (limited to 'src')
-rw-r--r--src/gprs_bssgp_pcu.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gprs_bssgp_pcu.cpp b/src/gprs_bssgp_pcu.cpp
index b29413df..f966a796 100644
--- a/src/gprs_bssgp_pcu.cpp
+++ b/src/gprs_bssgp_pcu.cpp
@@ -1000,7 +1000,7 @@ static int ns_create_nsvc(struct gprs_rlcmac_bts *bts,
/* FIXME: for SNS we just use the first successful NS-VC instead of all for the initial connect */
if (bts->ns_dialect == NS2_DIALECT_SNS) {
- rc = gprs_ns2_ip_connect_sns(bind[i], &remote[i], nsei);
+ rc = gprs_ns2_sns_add_endpoint(bts->nse, &remote[i]);
if (!rc)
return rc;
else