aboutsummaryrefslogtreecommitdiff
path: root/src/conversation/test_conversation_api_reject.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/conversation/test_conversation_api_reject.c')
-rw-r--r--src/conversation/test_conversation_api_reject.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/conversation/test_conversation_api_reject.c b/src/conversation/test_conversation_api_reject.c
index 5f1f836f7..9257764cf 100644
--- a/src/conversation/test_conversation_api_reject.c
+++ b/src/conversation/test_conversation_api_reject.c
@@ -147,7 +147,8 @@ end_test (void *cls)
147 } 147 }
148 if (NULL != phone) 148 if (NULL != phone)
149 { 149 {
150 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Disconnecting from PHONE service.\n"); 150 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
151 "Disconnecting from PHONE service.\n");
151 GNUNET_CONVERSATION_phone_destroy (phone); 152 GNUNET_CONVERSATION_phone_destroy (phone);
152 phone = NULL; 153 phone = NULL;
153 } 154 }
@@ -214,8 +215,11 @@ call_event_handler (void *cls,
214 case GNUNET_CONVERSATION_EC_CALL_GNS_FAIL: 215 case GNUNET_CONVERSATION_EC_CALL_GNS_FAIL:
215 case GNUNET_CONVERSATION_EC_CALL_SUSPENDED: 216 case GNUNET_CONVERSATION_EC_CALL_SUSPENDED:
216 case GNUNET_CONVERSATION_EC_CALL_RESUMED: 217 case GNUNET_CONVERSATION_EC_CALL_RESUMED:
218 fprintf (stderr, "Unexpected call code: %d\n", code);
219 break;
217 case GNUNET_CONVERSATION_EC_CALL_ERROR: 220 case GNUNET_CONVERSATION_EC_CALL_ERROR:
218 fprintf (stderr, "Unexpected call code: %d\n", code); 221 fprintf (stderr, "Unexpected call code: %d\n", code);
222 call = NULL;
219 break; 223 break;
220 } 224 }
221} 225}