[svn-commits] tilghman: branch 1.6.2 r228194 - in /branches/1.6.2: ./ apps/app_meetme.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu Nov 5 15:27:05 CST 2009


Author: tilghman
Date: Thu Nov  5 15:27:00 2009
New Revision: 228194

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=228194
Log:
Merged revisions 228191 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

........
  r228191 | tilghman | 2009-11-05 15:24:21 -0600 (Thu, 05 Nov 2009) | 7 lines
  
  MEETME_INFO should not return a literal error message to the dialplan.
  (closes issue #15450)
   Reported by: JimVanM
   Patches: 
         meetmeinfopatch.diff.txt uploaded by dbrooks (license 790)
   Tested by: JimVanM
........

Modified:
    branches/1.6.2/   (props changed)
    branches/1.6.2/apps/app_meetme.c

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

Modified: branches/1.6.2/apps/app_meetme.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.2/apps/app_meetme.c?view=diff&rev=228194&r1=228193&r2=228194
==============================================================================
--- branches/1.6.2/apps/app_meetme.c (original)
+++ branches/1.6.2/apps/app_meetme.c Thu Nov  5 15:27:00 2009
@@ -6373,7 +6373,8 @@
 	} else if (result == -1) {
 		snprintf(buf, len, "%s %s", "Error: invalid keyword:", args.keyword);
 	} else if (result == -2) {
-		snprintf(buf, len, "Error: conference (%s) not found", args.confno);
+		ast_log(LOG_NOTICE, "Error: conference (%s) not found\n", args.confno); 
+		snprintf(buf, len, "0");
 	}
 
 	return 0;




More information about the svn-commits mailing list