[asterisk-commits] jrose: testsuite/asterisk/trunk r1710 - in /asterisk/trunk/tests/channels/SIP...

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Fri Jul 8 11:00:21 CDT 2011


Author: jrose
Date: Fri Jul  8 11:00:17 2011
New Revision: 1710

URL: http://svnview.digium.com/svn/testsuite?view=rev&rev=1710
Log:
removing use of 'same =>' in dialplans.

Modified:
    asterisk/trunk/tests/channels/SIP/sip_tls_call/configs/ast1/extensions.conf
    asterisk/trunk/tests/channels/SIP/sip_tls_call/configs/ast2/extensions.conf

Modified: asterisk/trunk/tests/channels/SIP/sip_tls_call/configs/ast1/extensions.conf
URL: http://svnview.digium.com/svn/testsuite/asterisk/trunk/tests/channels/SIP/sip_tls_call/configs/ast1/extensions.conf?view=diff&rev=1710&r1=1709&r2=1710
==============================================================================
--- asterisk/trunk/tests/channels/SIP/sip_tls_call/configs/ast1/extensions.conf (original)
+++ asterisk/trunk/tests/channels/SIP/sip_tls_call/configs/ast1/extensions.conf Fri Jul  8 11:00:17 2011
@@ -4,11 +4,11 @@
 
 [default]
 exten => 1000,1,Answer()
-    same => n,Background(demo-congrats)
-    same => n,Verbose(Didn't get DTMF, do error handling)
-    sane => n,Hangup()
+exten => 1000,n,Background(demo-congrats)
+exten => 1000,n,Verbose(Didn't get DTMF, do error handling)
+exten => 1000,n,Hangup()
 
 exten => 5,1,NoOp()
-    same => n,SendDTMF(6)
-    same => n,Verbose(Successfully dial commands)
-    same => n,Hangup()
+exten => 5,n,SendDTMF(6)
+exten => 5,n,Verbose(Successfully dial commands)
+exten => 5,n,Hangup()

Modified: asterisk/trunk/tests/channels/SIP/sip_tls_call/configs/ast2/extensions.conf
URL: http://svnview.digium.com/svn/testsuite/asterisk/trunk/tests/channels/SIP/sip_tls_call/configs/ast2/extensions.conf?view=diff&rev=1710&r1=1709&r2=1710
==============================================================================
--- asterisk/trunk/tests/channels/SIP/sip_tls_call/configs/ast2/extensions.conf (original)
+++ asterisk/trunk/tests/channels/SIP/sip_tls_call/configs/ast2/extensions.conf Fri Jul  8 11:00:17 2011
@@ -5,11 +5,11 @@
 [default]
 
 exten => 1000,1,Answer()
-    same => n,SendDTMF(5)
-    same => n,Background(demo-congrats)
-    same => n,Verbose(Didn't get DTMF, do error handling)
-    sane => n,Hangup()
+exten => 1000,n,SendDTMF(5)
+exten => 1000,n,Background(demo-congrats)
+exten => 1000,n,Verbose(Didn't get DTMF, do error handling)
+exten => 1000,n,Hangup()
 
 exten => 6,1,NoOp()
-    same => n,Verbose(Successfully dial commands)
-    same => n,Hangup()
+exten => 6,n,Verbose(Successfully dial commands)
+exten => 6,n,Hangup()




More information about the asterisk-commits mailing list