[asterisk-commits] twilson: branch 1.6.2 r286223 - in /branches/1.6.2: ./ channels/chan_local.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Fri Sep 10 17:56:18 CDT 2010


Author: twilson
Date: Fri Sep 10 17:56:14 2010
New Revision: 286223

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=286223
Log:
Merged revisions 286222 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
  r286222 | twilson | 2010-09-10 17:54:23 -0500 (Fri, 10 Sep 2010) | 1 line
  
  Return -1 if chan_local doesn't support an option
........

Modified:
    branches/1.6.2/   (props changed)
    branches/1.6.2/channels/chan_local.c

Propchange: branches/1.6.2/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.

Modified: branches/1.6.2/channels/chan_local.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.2/channels/chan_local.c?view=diff&rev=286223&r1=286222&r2=286223
==============================================================================
--- branches/1.6.2/channels/chan_local.c (original)
+++ branches/1.6.2/channels/chan_local.c Fri Sep 10 17:56:14 2010
@@ -136,7 +136,7 @@
 	ast_chan_write_info_t *write_info;
 
 	if (option != AST_OPTION_CHANNEL_WRITE) {
-		return 0;
+		return -1;
 	}
 
 	write_info = data;




More information about the asterisk-commits mailing list