aboutsummaryrefslogtreecommitdiffstats
path: root/src/pcu_main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/pcu_main.cpp')
-rw-r--r--src/pcu_main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pcu_main.cpp b/src/pcu_main.cpp
index f26c6d86..60307e5c 100644
--- a/src/pcu_main.cpp
+++ b/src/pcu_main.cpp
@@ -148,7 +148,7 @@ int main(int argc, char *argv[])
osmo_init_logging(&gprs_log_info);
pcu_l1if_open();
- sgsn_nsi = gprs_ns_instantiate(&sgsn_ns_cb);
+ sgsn_nsi = gprs_ns_instantiate(&sgsn_ns_cb, NULL);
bssgp_nsi = sgsn_nsi;
if (!bssgp_nsi)
@@ -172,7 +172,7 @@ int main(int argc, char *argv[])
dest.sin_port = htons(SGSN_PORT);
inet_aton(SGSN_IP, &dest.sin_addr);
- nsvc = nsip_connect(sgsn_nsi, &dest, NSEI, nsvci);
+ nsvc = gprs_ns_nsip_connect(sgsn_nsi, &dest, NSEI, nsvci);
unsigned i = 0;
while (1)
{