aboutsummaryrefslogtreecommitdiff
path: root/src/conversation/gnunet-conversation.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-10-02 16:55:10 +0000
committerChristian Grothoff <christian@grothoff.org>2013-10-02 16:55:10 +0000
commitdc30009133e6c1021ac293469e69ff4043155b15 (patch)
tree4b772494a8188474b0a91015a0f9df0413461de3 /src/conversation/gnunet-conversation.c
parentbc26a5a2898974dadf5ce818797f700bc3bce567 (diff)
downloadgnunet-dc30009133e6c1021ac293469e69ff4043155b15.tar.gz
gnunet-dc30009133e6c1021ac293469e69ff4043155b15.zip
-ensure external symbols have proper prefix for conversation service
Diffstat (limited to 'src/conversation/gnunet-conversation.c')
-rw-r--r--src/conversation/gnunet-conversation.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/conversation/gnunet-conversation.c b/src/conversation/gnunet-conversation.c
index 9570737f4..f778c4c01 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
112{ 112{
113 switch (type) 113 switch (type)
114 { 114 {
115 case NotificationType_SERVICE_BLOCKED: 115 case GNUNET_CONVERSATION_NT_SERVICE_BLOCKED:
116 FPRINTF (stdout, _("The service is already in use. Try again later.")); 116 FPRINTF (stdout, _("The service is already in use. Try again later."));
117 117
118 break; 118 break;
119 119
120 case NotificationType_NO_PEER: 120 case GNUNET_CONVERSATION_NT_NO_PEER:
121 FPRINTF (stdout, _("The Peer you were calling is no correct peer.\n")); 121 FPRINTF (stdout, _("The Peer you were calling is no correct peer.\n"));
122 122
123 break; 123 break;
124 124
125 case NotificationType_NO_ANSWER: 125 case GNUNET_CONVERSATION_NT_NO_ANSWER:
126 FPRINTF (stdout, _("Peer %s did not answer your call.\n"), 126 FPRINTF (stdout, _("Peer %s did not answer your call.\n"),
127 GNUNET_i2s_full (peer)); 127 GNUNET_i2s_full (peer));
128 128
129 break; 129 break;
130 130
131 case NotificationType_AVAILABLE_AGAIN: 131 case GNUNET_CONVERSATION_NT_AVAILABLE_AGAIN:
132 FPRINTF (stdout, _("Peer %s is now available.\n"), 132 FPRINTF (stdout, _("Peer %s is now available.\n"),
133 GNUNET_i2s_full (peer)); 133 GNUNET_i2s_full (peer));
134 134
135 break; 135 break;
136 136
137 case NotificationType_CALL_ACCEPTED: 137 case GNUNET_CONVERSATION_NT_CALL_ACCEPTED:
138 FPRINTF (stdout, _("Peer %s has accepted your call.\n"), 138 FPRINTF (stdout, _("Peer %s has accepted your call.\n"),
139 GNUNET_i2s_full (peer)); 139 GNUNET_i2s_full (peer));
140 140
141 break; 141 break;
142 142
143 case NotificationType_CALL_TERMINATED: 143 case GNUNET_CONVERSATION_NT_CALL_TERMINATED:
144 FPRINTF (stdout, _("Peer %s has terminated the call.\n"), 144 FPRINTF (stdout, _("Peer %s has terminated the call.\n"),
145 GNUNET_i2s_full (peer)); 145 GNUNET_i2s_full (peer));
146 break; 146 break;