[asterisk-commits] trunk r24670 - in /trunk: ./ apps/app_verbose.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Thu May 4 04:24:48 MST 2006
Author: bweschke
Date: Thu May 4 06:24:47 2006
New Revision: 24670
URL: http://svn.digium.com/view/asterisk?rev=24670&view=rev
Log:
Merged revisions 24669 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.2
........
r24669 | bweschke | 2006-05-04 06:17:13 -0500 (Thu, 04 May 2006) | 3 lines
Make sure that only the "|" is a recognized delimiter for Verbose(), as the app documentation already specifies. #7080 (alessiof reporting)
........
Modified:
trunk/ (props changed)
trunk/apps/app_verbose.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.2-merged' - no diff available.
Modified: trunk/apps/app_verbose.c
URL: http://svn.digium.com/view/asterisk/trunk/apps/app_verbose.c?rev=24670&r1=24669&r2=24670&view=diff
==============================================================================
--- trunk/apps/app_verbose.c (original)
+++ trunk/apps/app_verbose.c Thu May 4 06:24:47 2006
@@ -66,7 +66,7 @@
if (data) {
if ((vtext = ast_strdupa(data))) {
- char *tmp = strsep(&vtext, "|,");
+ char *tmp = strsep(&vtext, "|");
if (vtext) {
if (sscanf(tmp, "%d", &vsize) != 1) {
vsize = 0;
More information about the asterisk-commits
mailing list