gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r5119 - in GNUnet: . src/applications/sqstore_mysql


From: gnunet
Subject: [GNUnet-SVN] r5119 - in GNUnet: . src/applications/sqstore_mysql
Date: Wed, 20 Jun 2007 17:11:13 -0600 (MDT)

Author: grothoff
Date: 2007-06-20 17:11:11 -0600 (Wed, 20 Jun 2007)
New Revision: 5119

Modified:
   GNUnet/AUTHORS
   GNUnet/ChangeLog
   GNUnet/src/applications/sqstore_mysql/mysql.c
Log:
fx

Modified: GNUnet/AUTHORS
===================================================================
--- GNUnet/AUTHORS      2007-06-18 23:03:28 UTC (rev 5118)
+++ GNUnet/AUTHORS      2007-06-20 23:11:11 UTC (rev 5119)
@@ -9,6 +9,7 @@
 Andrew McDonald <address@hidden> [ SHA-512]
 Antti Salonen
 Blake Matheny <address@hidden>
+David Kuehling <address@hidden>
 Enrico Scholz <address@hidden>
 Eric Haumant
 Eric Noack <address@hidden>

Modified: GNUnet/ChangeLog
===================================================================
--- GNUnet/ChangeLog    2007-06-18 23:03:28 UTC (rev 5118)
+++ GNUnet/ChangeLog    2007-06-20 23:11:11 UTC (rev 5119)
@@ -1,3 +1,6 @@
+Wed Jun 20 17:10:38 MDT 2007
+       Fixed bug in MySQL module.
+
 Sun Jun 17 00:09:13 MDT 2007
        Releasing GNUnet 0.7.2.
 

Modified: GNUnet/src/applications/sqstore_mysql/mysql.c
===================================================================
--- GNUnet/src/applications/sqstore_mysql/mysql.c       2007-06-18 23:03:28 UTC 
(rev 5118)
+++ GNUnet/src/applications/sqstore_mysql/mysql.c       2007-06-20 23:11:11 UTC 
(rev 5119)
@@ -656,12 +656,12 @@
     SNPRINTF(limit,
             512,
             "SELECT SQL_NO_CACHE * FROM gn070"
-            " %s WHERE expire > %llu AND anonLevel == 0 AND type != %d",
+            " %%s WHERE expire > %%llu AND anonLevel = 0 AND type != %d",
             ONDEMAND_BLOCK);
   else
     strcpy(limit,
           "SELECT SQL_NO_CACHE * FROM gn070"
-          " %s WHERE expire > %llu AND anonLevel == 0");
+          " %s WHERE expire > %llu AND anonLevel = 0");
   return iterateHelper(type,
                       limit,
                       iter,





reply via email to

[Prev in Thread] Current Thread [Next in Thread]