]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
update
authorAnthony Minessale <anthony.minessale@gmail.com>
Wed, 26 Apr 2006 22:02:59 +0000 (22:02 +0000)
committerAnthony Minessale <anthony.minessale@gmail.com>
Wed, 26 Apr 2006 22:02:59 +0000 (22:02 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1271 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/endpoints/mod_exosip/mod_exosip.c

index feec5e866203f4b5804f5eb842945f07371ea813..d9aa136686c94e811543f1f76b95d0e01ee6b7f2 100644 (file)
@@ -1391,8 +1391,7 @@ static void destroy_call_by_event(eXosip_event_t * event)
        switch_channel *channel = NULL;
 
        if ((tech_pvt = get_pvt_by_call_id(event->cid)) == 0) {
-               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Um in case you are interested, Can't find the pvt [%d]!\n",
-                                                         event->cid);
+               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "cannot destroy nonexistant call [%d]!\n", event->cid);
                return;
        }
 
@@ -1457,7 +1456,7 @@ static void handle_answer(eXosip_event_t * event)
 
 
        if ((tech_pvt = get_pvt_by_call_id(event->cid)) == 0) {
-               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Um in case you are interested, Can't find the pvt!\n");
+               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "cannot answer nonexistant call [%d]!\n", event->cid);
                return;
        }