Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 24170 invoked from network); 5 Mar 2008 18:48:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 5 Mar 2008 18:48:55 -0000 Received: (qmail 22531 invoked by uid 500); 5 Mar 2008 18:48:51 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 22403 invoked by uid 500); 5 Mar 2008 18:48:51 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 22392 invoked by uid 500); 5 Mar 2008 18:48:51 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 22389 invoked by uid 99); 5 Mar 2008 18:48:51 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 05 Mar 2008 10:48:51 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 05 Mar 2008 18:48:24 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id BB1AF1A9832; Wed, 5 Mar 2008 10:48:31 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r633969 - /webservices/axis2/trunk/c/util/src/uri.c Date: Wed, 05 Mar 2008 18:48:30 -0000 To: axis2-cvs@ws.apache.org From: senaka@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080305184832.BB1AF1A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: senaka Date: Wed Mar 5 10:48:18 2008 New Revision: 633969 URL: http://svn.apache.org/viewvc?rev=633969&view=rev Log: Making more allowances Modified: webservices/axis2/trunk/c/util/src/uri.c Modified: webservices/axis2/trunk/c/util/src/uri.c URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/src/uri.c?rev=633969&r1=633968&r2=633969&view=diff ============================================================================== --- webservices/axis2/trunk/c/util/src/uri.c (original) +++ webservices/axis2/trunk/c/util/src/uri.c Wed Mar 5 10:48:18 2008 @@ -471,7 +471,8 @@ } else if (!*hostinfo || (*hostinfo >= '0' && *hostinfo <= '9') || (*hostinfo >= 'a' && *hostinfo <= 'z') || - (*hostinfo >= 'A' && *hostinfo <= 'Z')) + (*hostinfo >= 'A' && *hostinfo <= 'Z') || + *hostinfo == '?' || *hostinfo == '/' || *hostinfo == '#') { s = axutil_memchr(hostinfo, ':', uri_str - hostinfo); } --------------------------------------------------------------------- To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org For additional commands, e-mail: axis-cvs-help@ws.apache.org