[EMAIL PROTECTED] wrote:
Author: mattf
Date: Mon May 14 17:25:56 2007
New Revision: 64384

URL: http://svn.digium.com/view/asterisk?view=rev&rev=64384
Log:
Add codec G.722 support.

Wow!! All you had to do to add G.722 support was move a call to ast_verbose() ? That rocks! ;-p


Modified:
    trunk/channels/chan_zap.c

Modified: trunk/channels/chan_zap.c
URL: 
http://svn.digium.com/view/asterisk/trunk/channels/chan_zap.c?view=diff&rev=64384&r1=64383&r2=64384
==============================================================================
--- trunk/channels/chan_zap.c (original)
+++ trunk/channels/chan_zap.c Mon May 14 17:25:56 2007
@@ -8619,9 +8619,10 @@
                while ((e = ss7_check_event(ss7))) {
                        switch (e->e) {
                        case SS7_EVENT_UP:
-                               ast_verbose("--- SS7 Up ---\n");
-                               if (linkset->state != LINKSET_STATE_UP)
+                               if (linkset->state != LINKSET_STATE_UP) {
+                                       ast_verbose("--- SS7 Up ---\n");
                                        ss7_reset_linkset(linkset);
+                               }
                                linkset->state = LINKSET_STATE_UP;
                                break;
                        case SS7_EVENT_DOWN:

_______________________________________________
--Bandwidth and Colocation provided by Easynews.com --

svn-commits mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/svn-commits


--
Russell Bryant
Software Engineer
Digium, Inc.
_______________________________________________
--Bandwidth and Colocation provided by Easynews.com --

asterisk-dev mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-dev

Reply via email to