aboutsummaryrefslogtreecommitdiffstats
path: root/channels/chan_sip.c
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2009-01-08 17:29:36 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2009-01-08 17:29:36 +0000
commit31a548d278bad3e49a163a617162f1f7acc31094 (patch)
tree70b5d1d787d277ce6ed3f700ec60cc378f1db9ab /channels/chan_sip.c
parent1f2ecb1bd4d06ff0d8bdc5db6fd26e7f1314a56e (diff)
Merged revisions 167720 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ................ r167720 | kpfleming | 2009-01-08 11:26:03 -0600 (Thu, 08 Jan 2009) | 9 lines Merged revisions 167714 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r167714 | kpfleming | 2009-01-08 11:24:21 -0600 (Thu, 08 Jan 2009) | 1 line remove an unnecessary argument to queue_request() ........ ................ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.0@167730 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels/chan_sip.c')
-rw-r--r--channels/chan_sip.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index b45365f52..448695024 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -18714,7 +18714,7 @@ static int scheduler_process_request_queue(const void *data)
return 0;
}
-static int queue_request(struct sip_pvt *p, const struct sip_request *req, const struct sockaddr_in *sin)
+static int queue_request(struct sip_pvt *p, const struct sip_request *req)
{
struct sip_request *newreq;
@@ -18832,7 +18832,7 @@ static int handle_request_do(struct sip_request *req, struct sockaddr_in *sin)
append_history(p, "Rx", "%s / %s / %s", req->data, get_header(req, "CSeq"), req->rlPart2);
if (!lockretry) {
- if (!queue_request(p, req, sin)) {
+ if (!queue_request(p, req)) {
/* the request has been queued for later handling */
sip_pvt_unlock(p);
ast_mutex_unlock(&netlock);