libmsc/ussd.c: cosmetic: correct log level and message

Change-Id: If6c270fae54ce79c2708c99d7762ce6ff71f43d9
This commit is contained in:
Vadim Yanitskiy 2018-04-04 06:21:00 +07:00
parent 12d221f8cc
commit f95d5be0ae
1 changed files with 2 additions and 1 deletions

View File

@ -72,7 +72,8 @@ int handle_rcv_ussd(struct gsm_subscriber_connection *conn, struct msgb *msg)
gh = msgb_l3(msg);
rc = gsm0480_decode_ss_request(gh, msgb_l3len(msg), &req);
if (!rc) {
DEBUGP(DMM, "Unhandled SS\n");
LOGP(DMM, LOGL_ERROR, "SS/USSD message parsing error, "
"rejecting request...\n");
rc = gsm0480_send_ussd_reject(conn, &req);
return rc;
}