[Asterisk-cvs] asterisk UPGRADE.txt, 1.23, 1.24 manager.c, 1.111,
1.112
markster
markster
Sat Sep 24 23:52:18 CDT 2005
Update of /usr/cvsroot/asterisk
In directory mongoose.digium.com:/tmp/cvs-serv29917
Modified Files:
UPGRADE.txt manager.c
Log Message:
Fix GetVar manager action result (bug #5275)
Index: UPGRADE.txt
===================================================================
RCS file: /usr/cvsroot/asterisk/UPGRADE.txt,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- UPGRADE.txt 7 Sep 2005 02:42:12 -0000 1.23
+++ UPGRADE.txt 25 Sep 2005 03:49:22 -0000 1.24
@@ -164,10 +164,20 @@
MeetMe:
* The conference application now allows users to increase/decrease their
-speaking volume and listening volume (independently of each other and other
-users); the 'admin' and 'user' menus have changed, and new sound files are
-included with this release. However, if a user calling in over a Zaptel channel
-that does NOT have hardware DTMF detection increases their speaking volume,
-it is likely they will no longer be able to enter/exit the menu or make
-any further adjustments, as the software DTMF detector will not be able to
-recognize the DTMF coming from their device.
+ speaking volume and listening volume (independently of each other and
+ other users); the 'admin' and 'user' menus have changed, and new sound
+ files are included with this release. However, if a user calling in
+ over a Zaptel channel that does NOT have hardware DTMF detection
+ increases their speaking volume, it is likely they will no longer be
+ able to enter/exit the menu or make any further adjustments, as the
+ software DTMF detector will not be able to recognize the DTMF coming
+ from their device.
+
+GetVar Manager Action:
+
+* Previously, the behavior of the GetVar manager action reported the value
+ of a variable in the following manner:
+ > name: value
+ This has been changed to a manner similar to the SetVar action and is now
+ > Variable: name
+ > Value: value
Index: manager.c
===================================================================
RCS file: /usr/cvsroot/asterisk/manager.c,v
retrieving revision 1.111
retrieving revision 1.112
diff -u -d -r1.111 -r1.112
--- manager.c 14 Sep 2005 20:46:49 -0000 1.111
+++ manager.c 25 Sep 2005 03:49:22 -0000 1.112
@@ -704,7 +704,7 @@
ast_mutex_unlock(&c->lock);
ast_mutex_lock(&s->lock);
ast_cli(s->fd, "Response: Success\r\n"
- "%s: %s\r\n" ,varname,varval2);
+ "Variable: %s\r\nValue: %s\r\n" ,varname,varval2);
if (id && !ast_strlen_zero(id))
ast_cli(s->fd, "ActionID: %s\r\n",id);
ast_cli(s->fd, "\r\n");
More information about the svn-commits
mailing list