[svn-commits] dvossel: branch dvossel/sip_uri_encode_decode r235820 - /team/dvossel/sip_uri...

SVN commits to the Digium repositories svn-commits at lists.digium.com
Mon Dec 21 10:33:23 CST 2009


Author: dvossel
Date: Mon Dec 21 10:33:21 2009
New Revision: 235820

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=235820
Log:
updated comment for SIP_PEDANTIC_DECODE macro

Modified:
    team/dvossel/sip_uri_encode_decode/channels/chan_sip.c

Modified: team/dvossel/sip_uri_encode_decode/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/team/dvossel/sip_uri_encode_decode/channels/chan_sip.c?view=diff&rev=235820&r1=235819&r2=235820
==============================================================================
--- team/dvossel/sip_uri_encode_decode/channels/chan_sip.c (original)
+++ team/dvossel/sip_uri_encode_decode/channels/chan_sip.c Mon Dec 21 10:33:21 2009
@@ -1222,8 +1222,7 @@
 static struct sip_settings sip_cfg;		/*!< SIP configuration data.
 					\note in the future we could have multiple of these (per domain, per device group etc) */
 
-/*!< This macro should be used everytime ast_uri_decode is dependent on 
- *   pedantic checking to be on. */
+/*!< use this macro when ast_uri_decode is dependent on pedantic checking to be on. */
 #define SIP_PEDANTIC_DECODE(str)	\
 	if (!ast_strlen_zero(str) && (sip_cfg.pedanticsipchecking)) {	\
 		ast_uri_decode(str);	\




More information about the svn-commits mailing list