aboutsummaryrefslogtreecommitdiffstats
path: root/testing/asterisk/400-bug-227.patch
diff options
context:
space:
mode:
authorTimo Teräs <timo.teras@iki.fi>2011-12-16 08:44:26 +0200
committerTimo Teräs <timo.teras@iki.fi>2011-12-16 08:45:33 +0200
commite0d4e807e849edd9fbbdb7fc9b010fd4e3d85e4c (patch)
treebb92c4cc49c0a079761ce40e9f2827f6d6b78638 /testing/asterisk/400-bug-227.patch
parent46b0b8a55ba0053b15355f4f5f2f0e25221c5d04 (diff)
downloadaports-e0d4e807e849edd9fbbdb7fc9b010fd4e3d85e4c.tar.bz2
aports-e0d4e807e849edd9fbbdb7fc9b010fd4e3d85e4c.tar.xz
main/asterisk: upgrade to 10.0.0
... and delete the testing version.
Diffstat (limited to 'testing/asterisk/400-bug-227.patch')
-rw-r--r--testing/asterisk/400-bug-227.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/testing/asterisk/400-bug-227.patch b/testing/asterisk/400-bug-227.patch
deleted file mode 100644
index f8187379e1..0000000000
--- a/testing/asterisk/400-bug-227.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-Index: channels/chan_sip.c
-===================================================================
---- a/channels/chan_sip.c (revision 212243)
-+++ b/channels/chan_sip.c (working copy)
-@@ -3675,8 +3675,8 @@
- char method_str[31];
- ast_debug(3, "Re-scheduled destruction of SIP call %s\n", p->callid ? p->callid : "<unknown>");
- append_history(p, "ReliableXmit", "timeout");
-- if (sscanf(p->lastmsg, "Tx: %30s", method_str) == 1 || sscanf(p->lastmsg, "Rx: %30s", method_str) == 1) {
-- if (method_match(SIP_CANCEL, method_str) || method_match(SIP_BYE, method_str)) {
-+ if (sscanf(p->lastmsg, "Tx: %30s", method_str) == 1 || sscanf(p->lastmsg, "Rx: %30s", method_str) == 1 || sscanf(p->lastmsg, "Init: %30s", method_str) == 1) {
-+ if (method_match(SIP_CANCEL, method_str) || method_match(SIP_BYE, method_str) || method_match(SIP_INVITE, method_str)) {
- pvt_set_needdestroy(p, "autodestruct");
- }
- }