aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authoroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2006-06-14 11:40:31 +0000
committeroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2006-06-14 11:40:31 +0000
commitd28f5621d58435ef51b4cd8f673f80d18f563b23 (patch)
tree975c25200733e15bfefc4d378430a77431392f09 /channels
parent94a1edb1386b61b546230b0fffaa6200d8767e50 (diff)
Formatting fixes
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@34065 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_sip.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 49b8aac87..be92be000 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -3887,7 +3887,7 @@ static struct ast_frame *sip_read(struct ast_channel *ast)
{
struct ast_frame *fr;
struct sip_pvt *p = ast->tech_pvt;
- int faxdetected = 0;
+ int faxdetected = FALSE;
ast_mutex_lock(&p->lock);
fr = sip_rtp_read(ast, p, &faxdetected);
@@ -4024,9 +4024,8 @@ static struct sip_pvt *sip_alloc(ast_string_field callid, struct sockaddr_in *si
ast_rtp_settos(p->vrtp, global_tos_video);
ast_rtp_setdtmf(p->vrtp, 0);
}
- if (p->udptl) {
+ if (p->udptl)
ast_udptl_settos(p->udptl, global_tos_audio);
- }
p->rtptimeout = global_rtptimeout;
p->rtpholdtimeout = global_rtpholdtimeout;
p->rtpkeepalive = global_rtpkeepalive;