<h1>Project "FreeSWITCH Source" received a push.</h1>
<h2>branch: master updated</h2>
<pre>
via: b53a68484361c9581a26f6b090a58b0803bd412d (commit)
from: e0a0a56f240ec397d2074cf28d3c9976ab3bfd83 (commit)
</pre>= COMMIT LOG ===========================================================
<div class="highlight"><pre>committer: Anthony Minessale
comments:
fix bug in switch_itodtmf from a8f5bf60a87fb27420846bd9d9af5e61f1f947d6
<span style="color: #000080; font-weight: bold">diff --git a/src/include/switch_utils.h b/src/include/switch_utils.h</span>
<span style="color: #000080; font-weight: bold">index a1a93c6..7fcb1e8 100644</span>
<span style="color: #A00000">--- a/src/include/switch_utils.h</span>
<span style="color: #00A000">+++ b/src/include/switch_utils.h</span>
<span style="color: #800080; font-weight: bold">@@ -189,10 +189,12 @@ static inline char switch_itodtmf(char i)</span>
        char r = i;
        if (i > 9 && i < 14) {
<span style="color: #A00000">-                r = i + 55;</span>
<span style="color: #00A000">+                r += 55;</span>
<span style="color: #00A000">+        } else {</span>
<span style="color: #00A000">+                r += 48;</span>
        }
<span style="color: #A00000">-        return r + 48;</span>
<span style="color: #00A000">+        return r;</span>
}
static inline int switch_dtmftoi(char *s)
</pre></div>
========================================================================<pre>
Summary of changes:
src/include/switch_utils.h | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
</pre>
<p>this email was generated because of /git/your-repo.git/hooks/post-receive by the file /git-core/contrib/hooks/post-receive-email<br />
For more info, see <a href="http://blog.chomperstomp.com/?p=630">http://blog.chomperstomp.com/?p=630</a>
-- <br />
FreeSWITCH Source</p>