mirror of
https://github.com/asterisk/asterisk.git
synced 2026-07-22 14:34:09 -07:00
pjsip_distributor.c: Use correct rdata info access method.
The pjproject doxygen for rdata->msg_info.info says to call pjsip_rx_data_get_info() instead of accessing the struct member directly. You need to call the function mostly because the function will generate the struct member value if it is not already setup. Change-Id: Iafe8b01242b7deb0ebfdc36685e21374a43936d2
This commit is contained in:
@@ -257,7 +257,8 @@ static pjsip_dialog *find_dialog(pjsip_rx_data *rdata)
|
||||
|
||||
tsx = pjsip_tsx_layer_find_tsx(&tsx_key, PJ_TRUE);
|
||||
if (!tsx) {
|
||||
ast_debug(3, "Could not find matching transaction for %s\n", rdata->msg_info.info);
|
||||
ast_debug(3, "Could not find matching transaction for %s\n",
|
||||
pjsip_rx_data_get_info(rdata));
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user