Update of /cvsroot/monetdb/pathfinder/runtime
In directory sc8-pr-cvs16:/tmp/cvs-serv5490/runtime

Modified Files:
        xrpc_server.mx 
Log Message:

fixing BUG #1714603 "PF: XRpc tests fail on MacOS (Darwin) since 2007-03-10";
part 2 of 3:

in "BATloop(<bat>, p, q)", the loop/iterator variable is "p", not "q" !


Index: xrpc_server.mx
===================================================================
RCS file: /cvsroot/monetdb/pathfinder/runtime/xrpc_server.mx,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -d -r1.43 -r1.44
--- xrpc_server.mx      9 May 2007 08:31:40 -0000       1.43
+++ xrpc_server.mx      9 May 2007 08:34:47 -0000       1.44
@@ -337,7 +337,7 @@
 {
     BUN p,q;
     BATloop(allowed, p, q) {
-        char* prefix = BUNtail(allowed,q);
+        char* prefix = BUNtail(allowed,p);
         if (strncmp(key, prefix, strlen(prefix)) == 0)  
             return 1;
     }


-------------------------------------------------------------------------
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