From: Anthony Minessale Date: Wed, 29 Aug 2012 06:00:58 +0000 (-0500) Subject: evil typo to cause regression in new core recover engine X-Git-Tag: v1.2.3^2~147 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b9dd32ac8f0fe883aa5de5e26d09eea7a2321406;p=thirdparty%2Ffreeswitch.git evil typo to cause regression in new core recover engine --- diff --git a/src/switch_core_sqldb.c b/src/switch_core_sqldb.c index 1000a9fa4f..200ed3507e 100644 --- a/src/switch_core_sqldb.c +++ b/src/switch_core_sqldb.c @@ -2115,7 +2115,7 @@ SWITCH_DECLARE(void) switch_core_recovery_untrack(switch_core_session_t *session return; } - if (switch_channel_test_flag(channel, CF_TRACKED || force)) { + if (switch_channel_test_flag(channel, CF_TRACKED) || force) { if (force) { sql = switch_mprintf("delete from recovery where uuid='%q'", switch_core_session_get_uuid(session));