]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
remove extra paren
authorBrian West <brian@freeswitch.org>
Tue, 18 Dec 2007 19:15:08 +0000 (19:15 +0000)
committerBrian West <brian@freeswitch.org>
Tue, 18 Dec 2007 19:15:08 +0000 (19:15 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@6875 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/endpoints/mod_sofia/sofia.c

index 0e90a0e98b4405559f88e2e1381e6b8df2c46fd0..7eb93c2ca8c0d5c5afe2942c9f78992941bf3361 100644 (file)
@@ -457,7 +457,7 @@ void *SWITCH_THREAD_FUNC sofia_profile_thread_run(switch_thread_t *thread, void
 
        if (switch_event_create(&s_event, SWITCH_EVENT_PUBLISH) == SWITCH_STATUS_SUCCESS) {
                switch_event_add_header(s_event, SWITCH_STACK_BOTTOM, "service", "_sip._udp,_sip._tcp,_sip._sctp%s",
-                                                        (sofia_test_pflag(profile, PFLAG_TLS)) ? ",_sips._tcp" : ""));
+                                                               (sofia_test_pflag(profile, PFLAG_TLS)) ? ",_sips._tcp" : "");
 
                switch_event_add_header(s_event, SWITCH_STACK_BOTTOM, "port", "%d", profile->sip_port);
                switch_event_add_header(s_event, SWITCH_STACK_BOTTOM, "module_name", "%s", "mod_sofia");