[asterisk-commits] tilghman: trunk r83654 - in /trunk: ./ main/app.c
    SVN commits to the Asterisk project 
    asterisk-commits at lists.digium.com
       
    Mon Sep 24 11:40:12 CDT 2007
    
    
  
Author: tilghman
Date: Mon Sep 24 11:40:12 2007
New Revision: 83654
URL: http://svn.digium.com/view/asterisk?view=rev&rev=83654
Log:
Merged revisions 83637 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r83637 | tilghman | 2007-09-24 10:17:06 -0500 (Mon, 24 Sep 2007) | 3 lines
Making change to group splitting, as discussed on the -dev list.  The main
effect of this will be to permit Set(GROUP([cat])=), i.e. unsetting a group.
........
Modified:
    trunk/   (props changed)
    trunk/main/app.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/main/app.c
URL: http://svn.digium.com/view/asterisk/trunk/main/app.c?view=diff&rev=83654&r1=83653&r2=83654
==============================================================================
--- trunk/main/app.c (original)
+++ trunk/main/app.c Mon Sep 24 11:40:12 2007
@@ -843,7 +843,7 @@
 	if (!ast_strlen_zero(grp))
 		ast_copy_string(group, grp, group_max);
 	else
-		res = -1;
+		*group = '\0';
 
 	if (!ast_strlen_zero(cat))
 		ast_copy_string(category, cat, category_max);
    
    
More information about the asterisk-commits
mailing list