[Sumover-dev] [svn commit] r4137 - rat/trunk

sumover-dev at cs.ucl.ac.uk sumover-dev at cs.ucl.ac.uk
Thu Apr 3 19:39:38 BST 2008


Author: piers
Date: Thu Apr  3 19:39:37 2008
New Revision: 4137

Modified:
   rat/trunk/main_engine.c

Log:
Corrected rendezvous_with_controller() return check to compare against FALSE as opposed to NULL.

Modified: rat/trunk/main_engine.c
==============================================================================
--- rat/trunk/main_engine.c	(original)
+++ rat/trunk/main_engine.c	Thu Apr  3 19:39:37 2008
@@ -256,7 +256,7 @@
 		sp[1]->other_session = sp[0];
 	}
 
-        if (rendezvous_with_controller(sp)==NULL) {
+        if (rendezvous_with_controller(sp) == FALSE) {
 		fatal_error("RAT v" RAT_VERSION, "RATmedia could not rendezvous_with_controller - Firewall/VPN problem");
                 return FALSE;
         }



More information about the Sumover-dev mailing list