[asterisk-commits] Fix typo in chan sip (asterisk[13])
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Dec 9 05:33:17 CST 2016
Joshua Colp has submitted this change and it was merged. ( https://gerrit.asterisk.org/4603 )
Change subject: Fix typo in chan_sip
......................................................................
Fix typo in chan_sip
The conditional expressions of the 'if' operators
situated alongside each other are identical.
Change-Id: I652b6dcddb3be007e669a6aa8107edb31a1ddafb
---
M channels/chan_sip.c
1 file changed, 1 insertion(+), 1 deletion(-)
Approvals:
Kevin Harwell: Looks good to me, approved
Richard Mudgett: Looks good to me, but someone else must approve
Anonymous Coward #1000019: Verified
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 895739b..4181edb 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -2503,7 +2503,7 @@
struct sip_threadinfo *th = obj;
struct tcptls_packet *packet;
- if (th->alert_pipe[1] > -1) {
+ if (th->alert_pipe[0] > -1) {
close(th->alert_pipe[0]);
}
if (th->alert_pipe[1] > -1) {
--
To view, visit https://gerrit.asterisk.org/4603
To unsubscribe, visit https://gerrit.asterisk.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: I652b6dcddb3be007e669a6aa8107edb31a1ddafb
Gerrit-PatchSet: 1
Gerrit-Project: asterisk
Gerrit-Branch: 13
Gerrit-Owner: Joshua Colp <jcolp at digium.com>
Gerrit-Reviewer: Anonymous Coward #1000019
Gerrit-Reviewer: Badalian Vyacheslav <v.badalyan at open-bs.ru>
Gerrit-Reviewer: Joshua Colp <jcolp at digium.com>
Gerrit-Reviewer: Kevin Harwell <kharwell at digium.com>
Gerrit-Reviewer: Richard Mudgett <rmudgett at digium.com>
More information about the asterisk-commits
mailing list