Update of /cvsroot/monetdb/sql/src/backends/monet5
In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv6619

Modified Files:
        merovingian.mx 
Log Message:
Avoid compilation error


U merovingian.mx
Index: merovingian.mx
===================================================================
RCS file: /cvsroot/monetdb/sql/src/backends/monet5/merovingian.mx,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -d -r1.59 -r1.60
--- merovingian.mx      12 Oct 2008 10:31:29 -0000      1.59
+++ merovingian.mx      12 Oct 2008 14:48:37 -0000      1.60
@@ -1936,12 +1936,13 @@
        }
 
        /* the lock file is placed in the same directory as the pid */
+       /* which we know exists by now */
        strcpy(lockfile, pidfilename);
        c= strrchr(lockfile,'/');
        if (c)
                strcpy(c+1,".merovingian_lock");
-       } else
-               strcat(lockfile, ".merovingian_lock");
+       else
+               strcpy(lockfile, ".merovingian_lock");
        /* lock such that we are alone on this world */
        if ((ret = MT_lockf(lockfile, F_TLOCK, 4, 1)) == -1) {
                /* locking failed */


-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Monetdb-sql-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-sql-checkins

Reply via email to