aboutsummaryrefslogtreecommitdiff
path: root/src/conversation/test_conversation_api_twocalls.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-12-22 13:21:55 +0000
committerChristian Grothoff <christian@grothoff.org>2013-12-22 13:21:55 +0000
commitdaed7f922eac6b057bc972df35c70b922026ac2d (patch)
treed613909e75c7a9ea887f60289b9d163f97e51ea2 /src/conversation/test_conversation_api_twocalls.c
parent10a4f48adc48ecc8eb8c654502feb8d19eb7fe00 (diff)
downloadgnunet-daed7f922eac6b057bc972df35c70b922026ac2d.tar.gz
gnunet-daed7f922eac6b057bc972df35c70b922026ac2d.zip
-handle new error code from enum
Diffstat (limited to 'src/conversation/test_conversation_api_twocalls.c')
-rw-r--r--src/conversation/test_conversation_api_twocalls.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/conversation/test_conversation_api_twocalls.c b/src/conversation/test_conversation_api_twocalls.c
index 266dc608e..3f461231d 100644
--- a/src/conversation/test_conversation_api_twocalls.c
+++ b/src/conversation/test_conversation_api_twocalls.c
@@ -115,7 +115,7 @@ struct MicContext
115 void *rdc_cls; 115 void *rdc_cls;
116 116
117 GNUNET_SCHEDULER_TaskIdentifier call_task; 117 GNUNET_SCHEDULER_TaskIdentifier call_task;
118 118
119}; 119};
120 120
121static struct MicContext call1_mic_ctx; 121static struct MicContext call1_mic_ctx;
@@ -487,6 +487,9 @@ call_event_handler (void *cls,
487 case GNUNET_CONVERSATION_EC_CALL_RESUMED: 487 case GNUNET_CONVERSATION_EC_CALL_RESUMED:
488 LOG_DEBUG ("Call %s resumed\n", cid); 488 LOG_DEBUG ("Call %s resumed\n", cid);
489 break; 489 break;
490 case GNUNET_CONVERSATION_EC_CALL_ERROR:
491 GNUNET_break (0);
492 break;
490 } 493 }
491} 494}
492 495
@@ -604,7 +607,7 @@ run (void *cls,
604int 607int
605main (int argc, char *argv[]) 608main (int argc, char *argv[])
606{ 609{
607 610
608 if (0 != GNUNET_TESTING_peer_run ("test_conversation_api_twocalls", 611 if (0 != GNUNET_TESTING_peer_run ("test_conversation_api_twocalls",
609 "test_conversation.conf", 612 "test_conversation.conf",
610 &run, NULL)) 613 &run, NULL))