aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-05-05 08:14:37 +0000
committerChristian Grothoff <christian@grothoff.org>2011-05-05 08:14:37 +0000
commit4ad3c5402aad17be8d8a34550c4795340581103e (patch)
tree8b756d4bd4afe5838ce141fef051948d1467e8a3 /src
parent83ecceace62b80855d1647c08222c5e9c4fb4902 (diff)
downloadgnunet-4ad3c5402aad17be8d8a34550c4795340581103e.tar.gz
gnunet-4ad3c5402aad17be8d8a34550c4795340581103e.zip
link
Diffstat (limited to 'src')
-rw-r--r--src/datastore/plugin_datastore_mysql.c3
-rw-r--r--src/transport/Makefile.am2
2 files changed, 4 insertions, 1 deletions
diff --git a/src/datastore/plugin_datastore_mysql.c b/src/datastore/plugin_datastore_mysql.c
index e4989d519..baba03efb 100644
--- a/src/datastore/plugin_datastore_mysql.c
+++ b/src/datastore/plugin_datastore_mysql.c
@@ -620,8 +620,9 @@ init_params (struct Plugin *plugin,
620 if (mysql_stmt_execute (s->statement)) 620 if (mysql_stmt_execute (s->statement))
621 { 621 {
622 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, 622 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
623 _("`%s' failed at %s:%d with error: %s\n"), 623 _("`%s' for `%s' failed at %s:%d with error: %s\n"),
624 "mysql_stmt_execute", 624 "mysql_stmt_execute",
625 s->query,
625 __FILE__, __LINE__, mysql_stmt_error (s->statement)); 626 __FILE__, __LINE__, mysql_stmt_error (s->statement));
626 iclose (plugin); 627 iclose (plugin);
627 return GNUNET_SYSERR; 628 return GNUNET_SYSERR;
diff --git a/src/transport/Makefile.am b/src/transport/Makefile.am
index 699e8efca..55fd97b6c 100644
--- a/src/transport/Makefile.am
+++ b/src/transport/Makefile.am
@@ -272,12 +272,14 @@ endif
272test_transport_ats_SOURCES = \ 272test_transport_ats_SOURCES = \
273 test_transport_ats.c 273 test_transport_ats.c
274test_transport_ats_LDADD = \ 274test_transport_ats_LDADD = \
275 $(top_builddir)/src/statistics/libgnunetstatistics.la \
275 $(top_builddir)/src/testing/libgnunettesting.la \ 276 $(top_builddir)/src/testing/libgnunettesting.la \
276 $(top_builddir)/src/util/libgnunetutil.la 277 $(top_builddir)/src/util/libgnunetutil.la
277 278
278test_transport_ats_perf_SOURCES = \ 279test_transport_ats_perf_SOURCES = \
279 test_transport_ats_perf.c 280 test_transport_ats_perf.c
280test_transport_ats_perf_LDADD = \ 281test_transport_ats_perf_LDADD = \
282 $(top_builddir)/src/statistics/libgnunetstatistics.la \
281 $(top_builddir)/src/testing/libgnunettesting.la \ 283 $(top_builddir)/src/testing/libgnunettesting.la \
282 $(GN_GLPK) \ 284 $(GN_GLPK) \
283 $(top_builddir)/src/util/libgnunetutil.la 285 $(top_builddir)/src/util/libgnunetutil.la