dexter has submitted this change. ( https://gerrit.osmocom.org/c/osmo-pcu/+/31503 )
Change subject: en/decoding: fix deprecated include path ......................................................................
en/decoding: fix deprecated include path
The file gprs/protocol/gsm_04_60.h is deprecated, now it is recommended to use gsm/protocol/gsm_44_060.h
Change-Id: I870e446ad8f371e13bbdb4034feae1260c874ee5 --- M src/decoding.cpp M src/encoding.cpp 2 files changed, 14 insertions(+), 2 deletions(-)
Approvals: Jenkins Builder: Verified msuraev: Looks good to me, but someone else must approve fixeria: Looks good to me, approved
diff --git a/src/decoding.cpp b/src/decoding.cpp index ca0c720..db6b072 100644 --- a/src/decoding.cpp +++ b/src/decoding.cpp @@ -21,7 +21,7 @@ extern "C" { #include <osmocom/core/utils.h> #include <osmocom/core/bitcomp.h> -#include <osmocom/gprs/protocol/gsm_04_60.h> +#include <osmocom/gsm/protocol/gsm_44_060.h> }
#include <arpa/inet.h> diff --git a/src/encoding.cpp b/src/encoding.cpp index 370dbe2..243c874 100644 --- a/src/encoding.cpp +++ b/src/encoding.cpp @@ -25,7 +25,7 @@ #include <egprs_rlc_compression.h>
extern "C" { -#include <osmocom/gprs/protocol/gsm_04_60.h> +#include <osmocom/gsm/protocol/gsm_44_060.h> #include <osmocom/gsm/protocol/gsm_04_08.h> #include <osmocom/gsm/gsm48.h> }