diff options
author | Christian Grothoff <christian@grothoff.org> | 2013-10-02 16:55:10 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2013-10-02 16:55:10 +0000 |
commit | dc30009133e6c1021ac293469e69ff4043155b15 (patch) | |
tree | 4b772494a8188474b0a91015a0f9df0413461de3 /src/conversation/gnunet-conversation.c | |
parent | bc26a5a2898974dadf5ce818797f700bc3bce567 (diff) |
-ensure external symbols have proper prefix for conversation service
Diffstat (limited to 'src/conversation/gnunet-conversation.c')
-rw-r--r-- | src/conversation/gnunet-conversation.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/conversation/gnunet-conversation.c b/src/conversation/gnunet-conversation.c index 9570737f4f..f778c4c011 100644 --- a/src/conversation/gnunet-conversation.c +++ b/src/conversation/gnunet-conversation.c @@ -112,35 +112,35 @@ notification_handler (void *cls, struct GNUNET_CONVERSATION_Handle *handle, int { switch (type) { - case NotificationType_SERVICE_BLOCKED: + case GNUNET_CONVERSATION_NT_SERVICE_BLOCKED: FPRINTF (stdout, _("The service is already in use. Try again later.")); break; - case NotificationType_NO_PEER: + case GNUNET_CONVERSATION_NT_NO_PEER: FPRINTF (stdout, _("The Peer you were calling is no correct peer.\n")); break; - case NotificationType_NO_ANSWER: + case GNUNET_CONVERSATION_NT_NO_ANSWER: FPRINTF (stdout, _("Peer %s did not answer your call.\n"), GNUNET_i2s_full (peer)); break; - case NotificationType_AVAILABLE_AGAIN: + case GNUNET_CONVERSATION_NT_AVAILABLE_AGAIN: FPRINTF (stdout, _("Peer %s is now available.\n"), GNUNET_i2s_full (peer)); break; - case NotificationType_CALL_ACCEPTED: + case GNUNET_CONVERSATION_NT_CALL_ACCEPTED: FPRINTF (stdout, _("Peer %s has accepted your call.\n"), GNUNET_i2s_full (peer)); break; - case NotificationType_CALL_TERMINATED: + case GNUNET_CONVERSATION_NT_CALL_TERMINATED: FPRINTF (stdout, _("Peer %s has terminated the call.\n"), GNUNET_i2s_full (peer)); break; |