]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
reversed the order by accident on new param
authorAnthony Minessale <anthony.minessale@gmail.com>
Tue, 3 Nov 2009 23:21:02 +0000 (23:21 +0000)
committerAnthony Minessale <anthony.minessale@gmail.com>
Tue, 3 Nov 2009 23:21:02 +0000 (23:21 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@15336 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/endpoints/mod_sofia/sofia_reg.c

index 56e88cee6f806824373a076ab76617879c33fc24..5769e2df2e88f77b9a2d15fe4a993af1613a3301 100644 (file)
@@ -337,7 +337,7 @@ void sofia_reg_check_gateway(sofia_profile_t *profile, time_t now)
                                                         NUTAG_URL(gateway_ptr->register_url),
                                                         TAG_IF(gateway_ptr->register_sticky_proxy, NUTAG_PROXY(gateway_ptr->register_sticky_proxy)),
                                                         TAG_IF(user_via, SIPTAG_VIA_STR(user_via)),
-                                                        SIPTAG_TO_STR(gateway_ptr->distinct_to ? gateway_ptr->register_from : gateway_ptr->register_to),
+                                                        SIPTAG_TO_STR(gateway_ptr->distinct_to ? gateway_ptr->register_to : gateway_ptr->register_from),
                                                         SIPTAG_CONTACT_STR(gateway_ptr->register_contact),
                                                         SIPTAG_FROM_STR(gateway_ptr->register_from),                                    
                                                         SIPTAG_EXPIRES_STR(gateway_ptr->expires_str),
@@ -349,7 +349,7 @@ void sofia_reg_check_gateway(sofia_profile_t *profile, time_t now)
                                                           NUTAG_URL(gateway_ptr->register_url),
                                                           TAG_IF(user_via, SIPTAG_VIA_STR(user_via)),
                                                           SIPTAG_FROM_STR(gateway_ptr->register_from),
-                                                          SIPTAG_TO_STR(gateway_ptr->distinct_to ? gateway_ptr->register_from : gateway_ptr->register_to),
+                                                          SIPTAG_TO_STR(gateway_ptr->distinct_to ? gateway_ptr->register_to : gateway_ptr->register_from),
                                                           SIPTAG_EXPIRES_STR(gateway_ptr->expires_str),
                                                           NUTAG_REGISTRAR(gateway_ptr->register_proxy),
                                                           NUTAG_OUTBOUND("no-options-keepalive"), NUTAG_OUTBOUND("no-validate"), NUTAG_KEEPALIVE(0), TAG_NULL());