From: Travis Cross Date: Sun, 26 Jun 2011 13:30:05 +0000 (+0000) Subject: comment cleanup X-Git-Tag: v1.2-rc1~108^2^2~131 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8a8b70b7a4c83648b4e66812deb64e0e3fdfa1ee;p=thirdparty%2Ffreeswitch.git comment cleanup --- diff --git a/src/mod/applications/mod_callcenter/mod_callcenter.c b/src/mod/applications/mod_callcenter/mod_callcenter.c index c2c1c0c624..54b13f21dc 100644 --- a/src/mod/applications/mod_callcenter/mod_callcenter.c +++ b/src/mod/applications/mod_callcenter/mod_callcenter.c @@ -2530,17 +2530,17 @@ SWITCH_STANDARD_APP(callcenter_function) } - /* Make sure that an agent was not found, since we could have break out before settign it previously */ + /* Make sure an agent was found, as we might break above without setting it */ if (!agent_found && (p = switch_channel_get_variable(member_channel, "cc_agent_found"))) { agent_found = switch_true(p); } - /* Stop Member Thread */ + /* Stop member thread */ if (h) { h->running = 0; } - /* Check if we were removed be cause FS Core(BREAK) asked us too */ + /* Check if we were removed because FS Core(BREAK) asked us to */ if (h->member_cancel_reason == CC_MEMBER_CANCEL_REASON_NONE && !agent_found) { h->member_cancel_reason = CC_MEMBER_CANCEL_REASON_BREAK_OUT; }