cosmetic: log: fix "CallIDs does not match"

Change-Id: I16f3bf1312f913b7a7f0d9ff5c42efa645c6a5b3
This commit is contained in:
Neels Hofmeyr 2018-08-21 00:03:48 +02:00
parent 352eed09ae
commit 610fda6108
1 changed files with 1 additions and 1 deletions

View File

@ -414,7 +414,7 @@ int mgcp_verify_call_id(struct mgcp_endpoint *endp, const char *callid)
if (strcmp(endp->callid, callid) != 0) {
LOGP(DLMGCP, LOGL_ERROR,
"endpoint:0x%x CallIDs does not match '%s' != '%s'\n",
"endpoint:0x%x CallIDs mismatch: '%s' != '%s'\n",
ENDPOINT_NUMBER(endp), endp->callid, callid);
return -1;
}