summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2005-08-04 20:03:45 +0000
committerRussell Bryant <russell@russellbryant.com>2005-08-04 20:03:45 +0000
commitc65f1a04ab9cb4ddabdcf582b9337264e113c14a (patch)
treece89360c6695b1359cc916eff0d79ed6fc265e54 /channels
parentc3c496512f2f552edaa4459113ca6da493276584 (diff)
there is no reason to check the channeltype of the channel calling SIPAddHeader
because it really only matters what the channeltype is of the *created* channel in the subsequent dial (bug #4896) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6279 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels')
-rwxr-xr-xchannels/chan_sip.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 020ebdcf6..802e497f8 100755
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -11313,11 +11313,6 @@ static int sip_addheader(struct ast_channel *chan, void *data)
return 0;
}
ast_mutex_lock(&chan->lock);
- if (chan->type != channeltype) {
- ast_log(LOG_WARNING, "Call this application only on incoming SIP calls\n");
- ast_mutex_unlock(&chan->lock);
- return 0;
- }
/* Check for headers */
while (!ok && no <= 50) {