aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax <msuraev@sysmocom.de>2017-08-17 19:33:11 +0200
committerNeels Hofmeyr <neels@hofmeyr.de>2017-08-27 03:52:47 +0200
commit80893538619531c2b4ee2fd9d3110d453b8b0c03 (patch)
treef7b31d19bc4f5ada61b2948142f745f6ff6d4bdd
parent56d96da8efb2bb3b5451d54d42c3221e35a68bef (diff)
gbproxy: log unhandled BSSGP PDU as text
-rw-r--r--src/gprs/gb_proxy.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gprs/gb_proxy.c b/src/gprs/gb_proxy.c
index 3603e14e6..b98a9a5ce 100644
--- a/src/gprs/gb_proxy.c
+++ b/src/gprs/gb_proxy.c
@@ -1266,8 +1266,7 @@ static int gbprox_rx_sig_from_sgsn(struct gbproxy_config *cfg,
rc = bssgp_tx_status(BSSGP_CAUSE_PDU_INCOMP_FEAT, NULL, orig_msg);
break;
default:
- LOGP(DGPRS, LOGL_NOTICE, "BSSGP PDU type 0x%02x unknown\n",
- pdu_type);
+ LOGP(DGPRS, LOGL_NOTICE, "BSSGP PDU type %s not supported\n", bssgp_pdu_str(pdu_type));
rate_ctr_inc(&cfg->ctrg->
ctr[GBPROX_GLOB_CTR_PROTO_ERR_SGSN]);
rc = bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, orig_msg);