You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by se...@apache.org on 2008/03/05 21:50:43 UTC

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

Author: senaka
Date: Wed Mar  5 12:50:28 2008
New Revision: 634024

URL: http://svn.apache.org/viewvc?rev=634024&view=rev
Log:
Adding support for file:///

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?rev=634024&r1=634023&r2=634024&view=diff
==============================================================================
--- webservices/axis2/trunk/c/util/src/url.c (original)
+++ webservices/axis2/trunk/c/util/src/url.c Wed Mar  5 12:50:28 2008
@@ -45,7 +45,7 @@
 
     if (!protocol || !*protocol ||
         strstr(protocol, "://") ||
-        strchr(server, '/'))
+        (server && strchr(server, '/')))
     {
         return NULL;
     }



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