aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2012-06-01 08:53:44 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2012-06-01 08:53:44 +0000
commit41c71f34fed8af85b1ff13394cc5f1c30a7b6ac6 (patch)
treec887004476412c6b8a3ec8ab07024eadd59b7636 /src
parentaa3d794869b16a35ec8c4df9e70de36245caa6bc (diff)
downloadgnunet-41c71f34fed8af85b1ff13394cc5f1c30a7b6ac6.tar.gz
gnunet-41c71f34fed8af85b1ff13394cc5f1c30a7b6ac6.zip
additional error message
Diffstat (limited to 'src')
-rw-r--r--src/transport/plugin_transport_unix.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/transport/plugin_transport_unix.c b/src/transport/plugin_transport_unix.c
index 2725551e0..057479d53 100644
--- a/src/transport/plugin_transport_unix.c
+++ b/src/transport/plugin_transport_unix.c
@@ -756,7 +756,11 @@ unix_plugin_send (void *cls,
756 if (GNUNET_OK != GNUNET_CONTAINER_multihashmap_contains_value(plugin->session_map, 756 if (GNUNET_OK != GNUNET_CONTAINER_multihashmap_contains_value(plugin->session_map,
757 &session->target.hashPubKey, session)) 757 &session->target.hashPubKey, session))
758 { 758 {
759 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Invalid session for peer `%s' `%s'\n",
760 GNUNET_i2s (&session->target),
761 (char *) session->addr);
759 GNUNET_break (0); 762 GNUNET_break (0);
763
760 return GNUNET_SYSERR; 764 return GNUNET_SYSERR;
761 } 765 }
762 766