[OpenSIPS-Devel] [opensips] is_uri_user_e164 (#762)

ferrored notifications at github.com
Mon Jan 18 17:17:32 CET 2016


diff opensips-1.11.6-tls/modules/uri/checks.c opensips-1.11.5-tls/modules/uri/checks.c 
356,c356
< 	    if (c < '0' || c > '9') return -1;
---
> 	    if (c < '0' && c > '9') return -1;

replacing (c < '0' || c > '9') with  (c < '0' && c > '9') it seems to work

---
Reply to this email directly or view it on GitHub:
https://github.com/OpenSIPS/opensips/issues/762#issuecomment-172574680
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.opensips.org/pipermail/devel/attachments/20160118/74943954/attachment.htm>


More information about the Devel mailing list