[asterisk-commits] dvossel: branch 1.6.0 r233614 - in /branches/1.6.0: ./ main/utils.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Dec 7 17:30:19 CST 2009
Author: dvossel
Date: Mon Dec 7 17:30:14 2009
New Revision: 233614
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=233614
Log:
Merged revisions 233611 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
........
r233611 | dvossel | 2009-12-07 17:28:51 -0600 (Mon, 07 Dec 2009) | 4 lines
fixes incorrect logic in ast_uri_encode
issue #16299
........
Modified:
branches/1.6.0/ (props changed)
branches/1.6.0/main/utils.c
Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.0/main/utils.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.0/main/utils.c?view=diff&rev=233614&r1=233613&r2=233614
==============================================================================
--- branches/1.6.0/main/utils.c (original)
+++ branches/1.6.0/main/utils.c Mon Dec 7 17:30:14 2009
@@ -389,7 +389,7 @@
/* If there's no characters to convert, just go through and don't do anything */
while (*ptr) {
- if ((*ptr < 32 || (unsigned char) *ptr) > 127 || (doreserved && strchr(reserved, *ptr)) ) {
+ if ((*ptr < 32) || (doreserved && strchr(reserved, *ptr))) {
/* Oops, we need to start working here */
if (!buf) {
buf = outbuf;
More information about the asterisk-commits
mailing list