Update of /cvsroot/monetdb/sql/src/backends/monet5/merovingian
In directory 
sfp-cvsdas-1.v30.ch3.sourceforge.com:/tmp/cvs-serv17785/src/backends/monet5/merovingian

Modified Files:
        merovingian_controlrunner.c 
Log Message:
propagated changes of Friday Mar 05 2010 - Wednesday Mar 10 2010
from the Feb2010 branch to the development trunk

  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2010/03/05 - mr-meltdown:
          src/backends/monet5/merovingian/merovingian_controlrunner.c,1.31.2.1
  It's better to allocate some memory to write to.  Change signature of 
generateSalt, since it doesn't allocate memory as I mistakenly thought it did.
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


Index: merovingian_controlrunner.c
===================================================================
RCS file: 
/cvsroot/monetdb/sql/src/backends/monet5/merovingian/merovingian_controlrunner.c,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -r1.31 -r1.32
--- merovingian_controlrunner.c 7 Jan 2010 15:24:31 -0000       1.31
+++ merovingian_controlrunner.c 10 Mar 2010 14:29:46 -0000      1.32
@@ -193,7 +193,7 @@
 
                        /* send challenge */
                        p = buf;
-                       generateSalt(&p, 32);
+                       generateSalt(p, 32);
                        len = snprintf(buf2, sizeof(buf2),
                                        "merovingian:1:%s:\n", p);
                        send(msgsock, buf2, len, 0);


------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
Monetdb-sql-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-sql-checkins

Reply via email to