[asterisk-commits] jpeeler: branch 1.4 r152286 - /branches/1.4/channels/chan_dahdi.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Oct 27 18:28:50 CDT 2008
Author: jpeeler
Date: Mon Oct 27 18:28:49 2008
New Revision: 152286
URL: http://svn.digium.com/view/asterisk?view=rev&rev=152286
Log:
Buffer policy setting for half is not needed.
Modified:
branches/1.4/channels/chan_dahdi.c
Modified: branches/1.4/channels/chan_dahdi.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/channels/chan_dahdi.c?view=diff&rev=152286&r1=152285&r2=152286
==============================================================================
--- branches/1.4/channels/chan_dahdi.c (original)
+++ branches/1.4/channels/chan_dahdi.c Mon Oct 27 18:28:49 2008
@@ -11002,8 +11002,6 @@
confp->chan.buf_no = numbufs;
if (!strcasecmp(policy, "full")) {
confp->chan.buf_policy = DAHDI_POLICY_WHEN_FULL;
- } else if (!strcasecmp(policy, "half")) {
- confp->chan.buf_policy = DAHDI_POLICY_IMMEDIATE /* TODO: change to HALF_FULL */;
} else if (!strcasecmp(policy, "immediate")) {
confp->chan.buf_policy = DAHDI_POLICY_IMMEDIATE;
} else {
More information about the asterisk-commits
mailing list