1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-04-20 02:04:54 +00:00

Missing end tag

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2494 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Brian West 2006-09-04 00:03:20 +00:00
parent f4cef83070
commit 6b079d1404

@ -1569,8 +1569,8 @@ static void *SWITCH_THREAD_FUNC profile_thread_run(switch_thread_t *thread, void
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 @@ static void *SWITCH_THREAD_FUNC profile_thread_run(switch_thread_t *thread, void
NUTAG_EARLY_MEDIA(1),
NUTAG_AUTOANSWER(0),
SIPTAG_SUPPORTED_STR("100rel, precondition"),
NUTAG_AUTOALERT(0));
NUTAG_AUTOALERT(0),
TAG_END());
}