<h1>Project "FreeSWITCH Source" received a push.</h1>

<h2>branch: master updated</h2>
<pre>
       via: 0d5fcf65a0fef932f32874da6f4bdddb69279c53 (commit)
      from: 294436486302d0547b34ba26e5fa402c4ebaa58f (commit)


</pre>= COMMIT LOG ===========================================================
<div class="highlight"><pre>committer: Mathieu Rene
comments: 
xml_config: change min/max enforcements to &gt;= instead of &gt;

<span style="color: #000080; font-weight: bold">diff --git a/src/switch_xml_config.c b/src/switch_xml_config.c</span>
<span style="color: #000080; font-weight: bold">index b6b37bd..5ade057 100644</span>
<span style="color: #A00000">--- a/src/switch_xml_config.c</span>
<span style="color: #00A000">+++ b/src/switch_xml_config.c</span>
<span style="color: #800080; font-weight: bold">@@ -177,7 +177,7 @@ SWITCH_DECLARE(switch_status_t) switch_xml_config_parse_event(switch_event_t *ev</span>
 
                                         if (int_options) {
                                                 /* Enforce validation options */
<span style="color: #A00000">-                                                if ((int_options-&gt;enforce_min &amp;&amp; !(intval &gt; int_options-&gt;min)) || (int_options-&gt;enforce_max &amp;&amp; !(intval &lt; int_options-&gt;max))) {</span>
<span style="color: #00A000">+                                                if ((int_options-&gt;enforce_min &amp;&amp; !(intval &gt;= int_options-&gt;min)) || (int_options-&gt;enforce_max &amp;&amp; !(intval &lt;= int_options-&gt;max))) {</span>
                                                         /* Validation failed, set default */
                                                         intval = (int) (intptr_t) item-&gt;defaultvalue;
                                                         /* Then complain */
</pre></div>
========================================================================<pre>

Summary of changes:
 src/switch_xml_config.c |    2 +-
 1 files changed, 1 insertions(+), 1 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>