aboutsummaryrefslogtreecommitdiff
path: root/src/conversation/gnunet-conversation.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-12-20 21:36:24 +0000
committerChristian Grothoff <christian@grothoff.org>2013-12-20 21:36:24 +0000
commit15f29baef45e38424240503af228ca46cd95235c (patch)
tree4c613cef8e10efa18e49476fa8685008e74e65c1 /src/conversation/gnunet-conversation.c
parentc56383042a5948c39c1cc84520d584cf166fad30 (diff)
downloadgnunet-15f29baef45e38424240503af228ca46cd95235c.tar.gz
gnunet-15f29baef45e38424240503af228ca46cd95235c.zip
-this should fix #3228 (communicate conversation/reconnect errors to client)
Diffstat (limited to 'src/conversation/gnunet-conversation.c')
-rw-r--r--src/conversation/gnunet-conversation.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/conversation/gnunet-conversation.c b/src/conversation/gnunet-conversation.c
index b81743933..a042629cc 100644
--- a/src/conversation/gnunet-conversation.c
+++ b/src/conversation/gnunet-conversation.c
@@ -411,6 +411,11 @@ call_event_handler (void *cls,
411 _("Connection to `%s' resumed (by other user)\n"), 411 _("Connection to `%s' resumed (by other user)\n"),
412 peer_name); 412 peer_name);
413 break; 413 break;
414 case GNUNET_CONVERSATION_EC_CALL_ERROR:
415 FPRINTF (stdout,
416 _("Error with the call, restarting it\n"));
417 call_state = CS_RESOLVING;
418 break;
414 } 419 }
415} 420}
416 421