[svn-commits] seanbright: branch 11 r388253 - /branches/11/channels/chan_sip.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Fri May 10 06:46:03 CDT 2013


Author: seanbright
Date: Fri May 10 06:46:00 2013
New Revision: 388253

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=388253
Log:
Fix copy/paste error in one-touch-recording implementation.

Modified:
    branches/11/channels/chan_sip.c

Modified: branches/11/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/branches/11/channels/chan_sip.c?view=diff&rev=388253&r1=388252&r2=388253
==============================================================================
--- branches/11/channels/chan_sip.c (original)
+++ branches/11/channels/chan_sip.c Fri May 10 06:46:00 2013
@@ -21396,7 +21396,7 @@
 					feat = ast_find_call_feature(p->relatedpeer->record_on_feature);
 				}
 			} else if (!strcasecmp(c, "off")) {
-				if (ast_strlen_zero(p->relatedpeer->record_on_feature)) {
+				if (ast_strlen_zero(p->relatedpeer->record_off_feature)) {
 					suppress_warning = 1;
 				} else {
 					feat = ast_find_call_feature(p->relatedpeer->record_off_feature);




More information about the svn-commits mailing list