summaryrefslogtreecommitdiff
path: root/pjsip/src/test/tsx_uas_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'pjsip/src/test/tsx_uas_test.c')
-rw-r--r--pjsip/src/test/tsx_uas_test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pjsip/src/test/tsx_uas_test.c b/pjsip/src/test/tsx_uas_test.c
index 5363a397..f2242a43 100644
--- a/pjsip/src/test/tsx_uas_test.c
+++ b/pjsip/src/test/tsx_uas_test.c
@@ -261,7 +261,7 @@ static void send_response( pjsip_rx_data *rdata,
/* Schedule timer to send response for the specified UAS transaction */
static void schedule_send_response( pjsip_rx_data *rdata,
- const pj_str_t *tsx_key,
+ const pj_str_t *tsx_key_,
int status_code,
int msec_delay )
{
@@ -280,7 +280,7 @@ static void schedule_send_response( pjsip_rx_data *rdata,
}
r = PJ_POOL_ALLOC_T(tdata->pool, struct response);
- pj_strdup(tdata->pool, &r->tsx_key, tsx_key);
+ pj_strdup(tdata->pool, &r->tsx_key, tsx_key_);
r->tdata = tdata;
delay.sec = 0;