aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2022-06-20 13:14:05 +0200
committerpespin <pespin@sysmocom.de>2022-06-21 09:38:42 +0000
commitb8ae49d0ca708c0306179b44a0b8071cddddea03 (patch)
treedbed0be83f5ba02b88fd6b280e436d017c6b4903 /src
parentb90e1ef2d0b4a3db801b7990966e98f01b020899 (diff)
bts-sysmo: Replace use of deprecated ipa_client_conn_create API
""" osmo-bts/src/osmo-bts-sysmo/misc/sysmobts_mgr_calib.c:544:9: warning: ‘ipa_client_conn_create’ is deprecated: Use ipa_client_conn_create2() instead [-Wdeprecated-declarations] """ Change-Id: Ief4d629f366e4f69ccd489198302568a919b2f0c
Diffstat (limited to 'src')
-rw-r--r--src/osmo-bts-sysmo/misc/sysmobts_mgr_calib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/osmo-bts-sysmo/misc/sysmobts_mgr_calib.c b/src/osmo-bts-sysmo/misc/sysmobts_mgr_calib.c
index 6ea28763..f4d3b26e 100644
--- a/src/osmo-bts-sysmo/misc/sysmobts_mgr_calib.c
+++ b/src/osmo-bts-sysmo/misc/sysmobts_mgr_calib.c
@@ -541,8 +541,8 @@ int sysmobts_mgr_calib_init(struct sysmobts_mgr_instance *mgr)
return 0;
}
- mgr->calib.bts_conn = ipa_client_conn_create(tall_mgr_ctx, NULL, 0,
- "localhost", 4238,
+ mgr->calib.bts_conn = ipa_client_conn_create2(tall_mgr_ctx, NULL, 0,
+ NULL, 0, "localhost", 4238,
bts_updown_cb, bts_read_cb,
NULL, mgr);
if (!mgr->calib.bts_conn) {