aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-09-08 15:34:38 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-09-08 15:34:38 +0000
commit5e9ef4297883bb382f5f41ae8b7e4fceb30cda05 (patch)
tree0a9f77c7044d81a484a967bfd5534c9c9624fc7f
parent6995f4d2e3a1ac03a0d47b2e2389e6f8f4636ea4 (diff)
add missing break (issue #5154)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6552 f38db490-d61c-443f-a65b-d21fe96a405b
-rwxr-xr-xchannels/chan_sip.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 5621ab02b..410eb9a84 100755
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -8912,6 +8912,7 @@ static void handle_response_invite(struct sip_pvt *p, int resp, char *rest, stru
switch (resp) {
case 100: /* Trying */
sip_cancel_destroy(p);
+ break;
case 180: /* 180 Ringing */
sip_cancel_destroy(p);
if (!ignore && p->owner) {