pespin has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-bts/+/28392 )
Change subject: bts-sysmo: Replace use of deprecated ipa_client_conn_create API ......................................................................
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 --- M src/osmo-bts-sysmo/misc/sysmobts_mgr_calib.c 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-bts refs/changes/92/28392/1
diff --git a/src/osmo-bts-sysmo/misc/sysmobts_mgr_calib.c b/src/osmo-bts-sysmo/misc/sysmobts_mgr_calib.c index 6ea2876..f4d3b26 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 @@ 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) {