[svn-commits] mmichelson: trunk r150305 - in /trunk: ./ main/manager.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu Oct 16 18:41:16 CDT 2008


Author: mmichelson
Date: Thu Oct 16 18:41:16 2008
New Revision: 150305

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

........
r150304 | mmichelson | 2008-10-16 18:40:54 -0500 (Thu, 16 Oct 2008) | 6 lines

Reverting changes from commits 150298 and 150301 since
I was mistakenly under the assumption that dialplan functions
*always* required that a channel be present. I need to go
home earlier, I think :)


........

Modified:
    trunk/   (props changed)
    trunk/main/manager.c

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

Modified: trunk/main/manager.c
URL: http://svn.digium.com/view/asterisk/trunk/main/manager.c?view=diff&rev=150305&r1=150304&r2=150305
==============================================================================
--- trunk/main/manager.c (original)
+++ trunk/main/manager.c Thu Oct 16 18:41:16 2008
@@ -1805,10 +1805,7 @@
 	}
 
 	if (varname[strlen(varname) - 1] == ')') {
-		if (!c) {
-			astman_send_error(s, m, "No such channel");
-			return 0;
-		}
+
 		ast_func_read(c, (char *) varname, workspace, sizeof(workspace));
 		varval = workspace;
 	} else {




More information about the svn-commits mailing list