aboutsummaryrefslogtreecommitdiff
path: root/src/conversation
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-11-16 18:26:23 +0000
committerChristian Grothoff <christian@grothoff.org>2013-11-16 18:26:23 +0000
commit1db90656f1bd989b7fc621bb1929b99a1bb6d19b (patch)
treecbfbaebf6d7855217247281b69da7a48c9968cd2 /src/conversation
parent86e159914a47cc99ce6cdf1135bb1e1cd79ca44c (diff)
downloadgnunet-1db90656f1bd989b7fc621bb1929b99a1bb6d19b.tar.gz
gnunet-1db90656f1bd989b7fc621bb1929b99a1bb6d19b.zip
-fix
Diffstat (limited to 'src/conversation')
-rw-r--r--src/conversation/gnunet-conversation.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/conversation/gnunet-conversation.c b/src/conversation/gnunet-conversation.c
index 05b3044b6..07cb8ac44 100644
--- a/src/conversation/gnunet-conversation.c
+++ b/src/conversation/gnunet-conversation.c
@@ -249,7 +249,7 @@ phone_event_handler (void *cls,
249 { 249 {
250 case GNUNET_CONVERSATION_EC_PHONE_RING: 250 case GNUNET_CONVERSATION_EC_PHONE_RING:
251 FPRINTF (stdout, 251 FPRINTF (stdout,
252 _("Incoming call from `%s'.\nPlease /accept #%u or /cancel %u the call.\n"), 252 _("Incoming call from `%s'. Please /accept #%u or /cancel %u the call.\n"),
253 caller_id, 253 caller_id,
254 caller_num_gen, 254 caller_num_gen,
255 caller_num_gen); 255 caller_num_gen);
@@ -1054,7 +1054,7 @@ handle_command (void *cls,
1054 ptr = &message[strlen (commands[i].command)]; 1054 ptr = &message[strlen (commands[i].command)];
1055 while (isspace ((int) *ptr)) 1055 while (isspace ((int) *ptr))
1056 ptr++; 1056 ptr++;
1057 if ('\0' == ptr) 1057 if ('\0' == *ptr)
1058 ptr = NULL; 1058 ptr = NULL;
1059 commands[i].Action (ptr); 1059 commands[i].Action (ptr);
1060} 1060}