[svn-commits] trunk r35185 - /trunk/apps/app_amd.c
svn-commits at lists.digium.com
svn-commits at lists.digium.com
Tue Jun 20 15:26:17 MST 2006
Author: tilghman
Date: Tue Jun 20 17:26:16 2006
New Revision: 35185
URL: http://svn.digium.com/view/asterisk?rev=35185&view=rev
Log:
Bug 7399 - Sample config showed [general] as the context, so the app should look there, too.
Modified:
trunk/apps/app_amd.c
Modified: trunk/apps/app_amd.c
URL: http://svn.digium.com/view/asterisk/trunk/apps/app_amd.c?rev=35185&r1=35184&r2=35185&view=diff
==============================================================================
--- trunk/apps/app_amd.c (original)
+++ trunk/apps/app_amd.c Tue Jun 20 17:26:16 2006
@@ -346,7 +346,7 @@
cat = ast_category_browse(cfg, NULL);
while (cat) {
- if (!strcasecmp(cat, "amd") ) {
+ if (!strcasecmp(cat, "general") ) {
var = ast_variable_browse(cfg, cat);
while (var) {
if (!strcasecmp(var->name, "initial_silence")) {
More information about the svn-commits
mailing list