[Freeswitch-svn] [commit] r2494 - freeswitch/trunk/src/mod/endpoints/mod_sofia

Freeswitch SVN brian at freeswitch.org
Sun Sep 3 20:03:20 EDT 2006


Author: brian
Date: Sun Sep  3 20:03:20 2006
New Revision: 2494

Modified:
   freeswitch/trunk/src/mod/endpoints/mod_sofia/mod_sofia.c

Log:
Missing end tag

Modified: freeswitch/trunk/src/mod/endpoints/mod_sofia/mod_sofia.c
==============================================================================
--- freeswitch/trunk/src/mod/endpoints/mod_sofia/mod_sofia.c	(original)
+++ freeswitch/trunk/src/mod/endpoints/mod_sofia/mod_sofia.c	Sun Sep  3 20:03:20 2006
@@ -1569,8 +1569,8 @@
 				   NUTAG_EARLY_MEDIA(1),				   
 				   NUTAG_AUTOANSWER(0),
 				   NUTAG_AUTOALERT(0),
-				   SIPTAG_SUPPORTED_STR("100rel, precondition")
-				   );
+				   SIPTAG_SUPPORTED_STR("100rel, precondition"),
+				   TAG_END());
 				   
 
 	for (node = profile->aliases; node; node = node->next) {
@@ -1584,7 +1584,8 @@
 					   NUTAG_EARLY_MEDIA(1),
 					   NUTAG_AUTOANSWER(0),
 					   SIPTAG_SUPPORTED_STR("100rel, precondition"),
-					   NUTAG_AUTOALERT(0));
+					   NUTAG_AUTOALERT(0),
+					   TAG_END());
 		
 	}
 



More information about the Freeswitch-svn mailing list