aboutsummaryrefslogtreecommitdiff
path: root/src/testing/testing.c
diff options
context:
space:
mode:
authorharsha <harsha@140774ce-b5e7-0310-ab8b-a85725594a96>2012-10-22 22:54:56 +0000
committerharsha <harsha@140774ce-b5e7-0310-ab8b-a85725594a96>2012-10-22 22:54:56 +0000
commitbddd79b863cb41fbc2399463bcfa3222b87a2f44 (patch)
tree2ced27d3c89f30d39d14dca414f53eb6da40b646 /src/testing/testing.c
parent4caefeecc7b4b5bd7d7534afe50a60ebd53eb797 (diff)
fix
git-svn-id: https://gnunet.org/svn/gnunet@24466 140774ce-b5e7-0310-ab8b-a85725594a96
Diffstat (limited to 'src/testing/testing.c')
-rw-r--r--src/testing/testing.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/testing/testing.c b/src/testing/testing.c
index b4f8c81002..11d42206fd 100644
--- a/src/testing/testing.c
+++ b/src/testing/testing.c
@@ -837,7 +837,7 @@ GNUNET_TESTING_peer_configure (struct GNUNET_TESTING_System *system,
{
GNUNET_asprintf (&emsg_,
_("Failed to create configuration for peer (not enough free ports?)\n"));
- GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "%s", *emsg_);
+ GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "%s", emsg_);
if (NULL != emsg)
*emsg = emsg_;
else
@@ -863,7 +863,7 @@ GNUNET_TESTING_peer_configure (struct GNUNET_TESTING_System *system,
GNUNET_asprintf (&emsg_,
_("Failed to initialize hostkey for peer %u\n"),
(unsigned int) key_number);
- GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "%s", *emsg_);
+ GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "%s", emsg_);
if (NULL != emsg)
*emsg = emsg_;
else
@@ -897,7 +897,7 @@ GNUNET_TESTING_peer_configure (struct GNUNET_TESTING_System *system,
_("Failed to write hostkey file for peer %u: %s\n"),
(unsigned int) key_number,
STRERROR (errno));
- GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "%s", *emsg_);
+ GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "%s", emsg_);
if (NULL != emsg)
*emsg = emsg_;
else
@@ -916,7 +916,7 @@ GNUNET_TESTING_peer_configure (struct GNUNET_TESTING_System *system,
config_filename,
(unsigned int) key_number,
STRERROR (errno));
- GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "%s", *emsg_);
+ GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "%s", emsg_);
if (NULL != emsg)
*emsg = emsg_;
else