summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2018-10-02 01:29:09 +0700
committerVadim Yanitskiy <axilirator@gmail.com>2018-10-02 01:29:09 +0700
commitbc391c54f3eadb567e4622207b0e9f15b8711fa4 (patch)
tree710724b84f09d7d4cda409572a63532e086c007e
parent5541149bc75f61c3fb007fd6c9dd89b8c8b7ac88 (diff)
layer23/app_ccch_scan.c: hexdump unhandled PCH/AGCH messages
-rw-r--r--src/host/layer23/src/misc/app_ccch_scan.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/host/layer23/src/misc/app_ccch_scan.c b/src/host/layer23/src/misc/app_ccch_scan.c
index 57271749..3a55226a 100644
--- a/src/host/layer23/src/misc/app_ccch_scan.c
+++ b/src/host/layer23/src/misc/app_ccch_scan.c
@@ -405,8 +405,9 @@ int gsm48_rx_ccch(struct msgb *msg, struct osmocom_ms *ms)
/* wireshark know that this is SI2 quater and for 3G interop */
break;
default:
- LOGP(DRR, LOGL_NOTICE, "unknown PCH/AGCH type 0x%02x\n",
- sih->system_information);
+ LOGP(DRR, LOGL_NOTICE, "Unknown PCH/AGCH message "
+ "(type 0x%02x): %s\n", sih->system_information,
+ msgb_hexdump_l3(msg));
rc = -EINVAL;
}