You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by sa...@apache.org on 2006/12/06 15:19:54 UTC

svn commit: r483086 - /webservices/axis2/trunk/c/util/src/url.c

Author: samisa
Date: Wed Dec  6 06:19:53 2006
New Revision: 483086

URL: http://svn.apache.org/viewvc?view=rev&rev=483086
Log:
Removed logic that strips the URL segment after ?. AXIS2C-432

Modified:
    webservices/axis2/trunk/c/util/src/url.c

Modified: webservices/axis2/trunk/c/util/src/url.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/src/url.c?view=diff&rev=483086&r1=483085&r2=483086
==============================================================================
--- webservices/axis2/trunk/c/util/src/url.c (original)
+++ webservices/axis2/trunk/c/util/src/url.c Wed Dec  6 06:19:53 2006
@@ -262,11 +262,11 @@
         path = strchr(port_str, '/');
         if (NULL == path)
         {
-            params = strchr(port_str, '?');
+            /*params = strchr(port_str, '?');
             if (params)
             {
                 *params = '\0';
-            }
+            }*/
             port = AXIS2_ATOI(port_str);
             /* here we have protocol + server + port + def path */
             ret = axis2_url_create(env, protocol, server, port, "/");
@@ -277,11 +277,11 @@
         {
             *path++ = '\0';
             port = AXIS2_ATOI(port_str);
-            params = strchr(path, '?');
+            /*params = strchr(path, '?');
             if (params)
             {
                 *params = '\0';
-            }
+            }*/
             if (AXIS2_STRLEN(path) > 0)
             {
                 /* here we have protocol + server + port + path */



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org