aboutsummaryrefslogtreecommitdiff
path: root/src/conversation/gnunet-conversation.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-10-05 18:17:37 +0000
committerChristian Grothoff <christian@grothoff.org>2013-10-05 18:17:37 +0000
commit23fe13890f31317cc2ab86ef55264622ed72375f (patch)
treeb07ba0c79131fcc4cb524f8870dc98b09226dbfb /src/conversation/gnunet-conversation.c
parent7de0ce15a52e32e4258d8008f8bbab3c71599a0e (diff)
downloadgnunet-23fe13890f31317cc2ab86ef55264622ed72375f.tar.gz
gnunet-23fe13890f31317cc2ab86ef55264622ed72375f.zip
-fix message type
Diffstat (limited to 'src/conversation/gnunet-conversation.c')
-rw-r--r--src/conversation/gnunet-conversation.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/conversation/gnunet-conversation.c b/src/conversation/gnunet-conversation.c
index ba971049f..90b98b36f 100644
--- a/src/conversation/gnunet-conversation.c
+++ b/src/conversation/gnunet-conversation.c
@@ -286,15 +286,16 @@ call_event_handler (void *cls,
286 case GNUNET_CONVERSATION_EC_READY: 286 case GNUNET_CONVERSATION_EC_READY:
287 GNUNET_break (CS_RINGING == state); 287 GNUNET_break (CS_RINGING == state);
288 FPRINTF (stdout, 288 FPRINTF (stdout,
289 _("Connection established: %s\n"), 289 _("Connection established to `%s': %s\n"),
290 peer_name,
290 va_arg (va, const char *)); 291 va_arg (va, const char *));
291 state = CS_CONNECTED; 292 state = CS_CONNECTED;
292 break; 293 break;
293 case GNUNET_CONVERSATION_EC_GNS_FAIL: 294 case GNUNET_CONVERSATION_EC_GNS_FAIL:
294 GNUNET_break (CS_RESOLVING == state); 295 GNUNET_break (CS_RESOLVING == state);
295 FPRINTF (stdout, 296 FPRINTF (stdout,
296 "%s", 297 _("Failed to resolve `%s'\n"),
297 _("Failed to resolve name\n")); 298 ego_name);
298 GNUNET_CONVERSATION_call_stop (call, NULL); 299 GNUNET_CONVERSATION_call_stop (call, NULL);
299 call = NULL; 300 call = NULL;
300 start_phone (); 301 start_phone ();