From: Christian Grothoff Date: Fri, 15 Apr 2011 10:07:05 +0000 (+0000) Subject: fixes X-Git-Tag: initial-import-from-subversion-38251~18690 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=428722ec5368bff32dabf59826ccd87c218f940b;p=oweals%2Fgnunet.git fixes --- diff --git a/src/datastore/plugin_datastore_mysql.c b/src/datastore/plugin_datastore_mysql.c index 84f9d313c..fdbb9d1b5 100644 --- a/src/datastore/plugin_datastore_mysql.c +++ b/src/datastore/plugin_datastore_mysql.c @@ -657,7 +657,7 @@ init_params (struct Plugin *plugin, } if (! ( (pc == 0) && (-1 != (int) ft) && (va_arg (ap, int) == -1) ) ) { - GNUNET_break (0); + GNUNET_assert (0); return GNUNET_SYSERR; } if (mysql_stmt_bind_param (s->statement, qbind)) @@ -1465,14 +1465,11 @@ replication_prepare (void *cls, struct NextRequestClosure *nrc) { struct Plugin *plugin = cls; - unsigned long long nt; - nt = (unsigned long long) nrc->now.abs_value; return prepared_statement_run_select (plugin, plugin->select_replication, - 6, nrc->rbind, + 7, nrc->rbind, &return_ok, NULL, - MYSQL_TYPE_LONGLONG, &nt, GNUNET_YES, -1); }