diff options
author | Daniel Willmann <dwillmann@sysmocom.de> | 2020-12-10 17:59:46 +0100 |
---|---|---|
committer | Daniel Willmann <dwillmann@sysmocom.de> | 2020-12-10 18:11:47 +0100 |
commit | c4c1db9e7814e1fd74dfa273f5df117f309c3f16 (patch) | |
tree | 5dfe68fcfd9905429573d1515094665c038efec8 | |
parent | 61ff273365bd88fed94e10161aa35b12da2ad804 (diff) |
gbproxy: Fix bvci check in gbprox_rx_ptp_from_*
The check for bvci in _rx_ptp_from_* was always false.
Change-Id: I16a0284ba3201c146c307db6997a416589d7e693
Related: OS#4472
-rw-r--r-- | src/gbproxy/gb_proxy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gbproxy/gb_proxy.c b/src/gbproxy/gb_proxy.c index 06023c4b..ed4dbebb 100644 --- a/src/gbproxy/gb_proxy.c +++ b/src/gbproxy/gb_proxy.c @@ -250,7 +250,7 @@ static int gbprox_rx_ptp_from_bss(struct gbproxy_nse *nse, struct msgb *msg, uin LOGP(DGPRS, LOGL_DEBUG, "%s Rx %s\n", log_pfx, pdut_name); - if (ns_bvci == 0 && ns_bvci == 1) { + if (ns_bvci == 0 || ns_bvci == 1) { LOGP(DGPRS, LOGL_NOTICE, "%s BVCI=%05u is not PTP\n", log_pfx, ns_bvci); return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg); } @@ -360,7 +360,7 @@ static int gbprox_rx_ptp_from_sgsn(struct gbproxy_nse *nse, struct msgb *msg, ui LOGP(DGPRS, LOGL_DEBUG, "%s Rx %s\n", log_pfx, pdut_name); - if (ns_bvci == 0 && ns_bvci == 1) { + if (ns_bvci == 0 || ns_bvci == 1) { LOGP(DGPRS, LOGL_NOTICE, "%s BVCI is not PTP\n", log_pfx); return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg); } |