[Asterisk-cvs] asterisk config.c,1.27,1.27.2.1

russell at lists.digium.com russell at lists.digium.com
Tue May 10 23:20:45 CDT 2005


Update of /usr/cvsroot/asterisk
In directory mongoose.digium.com:/tmp/cvs-serv7220

Modified Files:
      Tag: v1-0
	config.c 
Log Message:
fix ast config path (bug #4184)


Index: config.c
===================================================================
RCS file: /usr/cvsroot/asterisk/config.c,v
retrieving revision 1.27
retrieving revision 1.27.2.1
diff -u -d -r1.27 -r1.27.2.1
--- config.c	3 Sep 2004 15:36:13 -0000	1.27
+++ config.c	11 May 2005 03:26:51 -0000	1.27.2.1
@@ -662,7 +662,7 @@
 	if (configfile[0] == '/') {
 		strncpy(fn, configfile, sizeof(fn)-1);
 	} else {
-		snprintf(fn, sizeof(fn), "%s/%s", AST_CONFIG_DIR, configfile);
+		snprintf(fn, sizeof(fn), "%s/%s", ast_config_AST_CONFIG_DIR, configfile);
 	}
 	time(&t);
 	strncpy(date, ctime(&t), sizeof(date) - 1);




More information about the svn-commits mailing list