summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2009-01-08 17:26:03 +0000
committerKevin P. Fleming <kpfleming@digium.com>2009-01-08 17:26:03 +0000
commit92b6225abe16a2da01c9a89253339e5e0a529b7a (patch)
treef91538aaedcdf09877570928135bf27eecbc8d4b /channels
parentd5f97b4052d4d7cf1d8371d2f879ce46e44cb010 (diff)
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: https://origsvn.digium.com/svn/asterisk/trunk@167720 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels')
-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 96a2fd2f0..f96322c3d 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -20287,7 +20287,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;
@@ -20425,7 +20425,7 @@ static int handle_request_do(struct sip_request *req, struct sockaddr_in *sin)
append_history(p, "Rx", "%s / %s / %s", req->data->str, 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);
ao2_t_ref(p, -1, "release p (from find_call) after queueing request");