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
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;
}