]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
update
authorAnthony Minessale <anthony.minessale@gmail.com>
Thu, 15 May 2008 21:04:37 +0000 (21:04 +0000)
committerAnthony Minessale <anthony.minessale@gmail.com>
Thu, 15 May 2008 21:04:37 +0000 (21:04 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8420 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/endpoints/mod_sofia/mod_sofia.c

index a1b8130327287ac785c1ba9442f8a89d005d77ec..afc3fbf739c613b3aa2058b6f9990490f23e041a 100644 (file)
@@ -975,7 +975,7 @@ static switch_status_t sofia_receive_message(switch_core_session_t *session, swi
                                code = 488;
                        }
                        
-                       if (!reason && code != 407) {
+                       if (switch_strlen_zero(reason) && code != 407) {
                                reason = sip_status_phrase(code);
                                if (switch_strlen_zero(reason)) {
                                        reason = "Because";
@@ -1014,7 +1014,7 @@ static switch_status_t sofia_receive_message(switch_core_session_t *session, swi
                                        switch_set_flag_locked(tech_pvt, TFLAG_BYE);
                                }
                        } else {
-                               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Responding with %d %s\n", code, reason);
+                               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Responding with %d [%s]\n", code, reason);
                                
                                if (!switch_strlen_zero(((char *)msg->pointer_arg))) {
                                        tech_pvt->local_sdp_str = switch_core_session_strdup(tech_pvt->session, (char *)msg->pointer_arg);