Update of /cvsroot/monetdb/pathfinder/compiler
In directory sc8-pr-cvs16:/tmp/cvs-serv10844

Modified Files:
        compile.c 
Log Message:
oops: forgot this one
- change in xrpc naming mechanism



Index: compile.c
===================================================================
RCS file: /cvsroot/monetdb/pathfinder/compiler/compile.c,v
retrieving revision 1.110
retrieving revision 1.111
diff -u -d -r1.110 -r1.111
--- compile.c   7 May 2007 10:16:57 -0000       1.110
+++ compile.c   8 May 2007 14:05:51 -0000       1.111
@@ -198,7 +198,7 @@
     xmlParserInputBufferPtr  buf;
     char *ret, url[1024];  
 
-    /* support for the xrpc://x.y.z/URI naming scheme (maps to 
http://x.y.z:<xrpc_port>/URI) */
+    /* support for the xrpc://x.y.z/URI naming scheme (maps to 
http://x.y.z:<xrpc_port>/xrpc/URI) */
     if (strncmp(uri, "xrpc://", 7) == 0) {
         char *p = strchr(uri+7, '/');
         char *q = strchr(uri+7, ':');
@@ -208,7 +208,7 @@
             *q = 0;
         }
         if (p) *p = 0;
-        snprintf(url, 1024, "http://%s:%d/%s";, uri+7, port, p?(p+1):"");
+        snprintf(url, 1024, "http://%s:%d/xrpc/%s";, uri+7, port, p?(p+1):"");
         if (p) *p = '/';
         if (q) *q = ':';
     } else {


-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Monetdb-pf-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-pf-checkins

Reply via email to