[svn-commits] kpfleming: branch 1.6.2 r231695 - /branches/1.6.2/pbx/pbx_config.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Mon Nov 30 15:58:55 CST 2009


Author: kpfleming
Date: Mon Nov 30 15:58:53 2009
New Revision: 231695

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=231695
Log:
Backport a tiny fix from trunk that makes GCC 4.4.x happier.


Modified:
    branches/1.6.2/pbx/pbx_config.c

Modified: branches/1.6.2/pbx/pbx_config.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.2/pbx/pbx_config.c?view=diff&rev=231695&r1=231694&r2=231695
==============================================================================
--- branches/1.6.2/pbx/pbx_config.c (original)
+++ branches/1.6.2/pbx/pbx_config.c Mon Nov 30 15:58:53 2009
@@ -38,8 +38,8 @@
 #include "asterisk/channel.h"	/* AST_MAX_EXTENSION */
 #include "asterisk/callerid.h"
 
-static char *config = "extensions.conf";
-static char *registrar = "pbx_config";
+static char config[] = "extensions.conf";
+static char registrar[] = "pbx_config";
 static char userscontext[AST_MAX_EXTENSION] = "default";
 
 static int static_config = 0;




More information about the svn-commits mailing list