[svn-commits] branch 1.2 r24669 - /branches/1.2/apps/app_verbose.c
svn-commits at lists.digium.com
svn-commits at lists.digium.com
Thu May 4 04:17:14 MST 2006
Author: bweschke
Date: Thu May 4 06:17:13 2006
New Revision: 24669
URL: http://svn.digium.com/view/asterisk?rev=24669&view=rev
Log:
Make sure that only the "|" is a recognized delimiter for Verbose(), as the app documentation already specifies. #7080 (alessiof reporting)
Modified:
branches/1.2/apps/app_verbose.c
Modified: branches/1.2/apps/app_verbose.c
URL: http://svn.digium.com/view/asterisk/branches/1.2/apps/app_verbose.c?rev=24669&r1=24668&r2=24669&view=diff
==============================================================================
--- branches/1.2/apps/app_verbose.c (original)
+++ branches/1.2/apps/app_verbose.c Thu May 4 06:17:13 2006
@@ -63,7 +63,7 @@
if (data) {
vtext = ast_strdupa((char *)data);
if (vtext) {
- char *tmp = strsep(&vtext, "|,");
+ char *tmp = strsep(&vtext, "|");
if (vtext) {
if (sscanf(tmp, "%d", &vsize) != 1) {
vsize = 0;
More information about the svn-commits
mailing list