[asterisk-commits] jamesgolovich: trunk r100224 -	/trunk/main/astmm.c
    SVN commits to the Asterisk project 
    asterisk-commits at lists.digium.com
       
    Thu Jan 24 12:35:05 CST 2008
    
    
  
Author: jamesgolovich
Date: Thu Jan 24 12:35:04 2008
New Revision: 100224
URL: http://svn.digium.com/view/asterisk?view=rev&rev=100224
Log:
Increase the size of filenames stored when astmm is used.  If the path 
length was long they would be truncated and grouped together with 
whatever matches
Modified:
    trunk/main/astmm.c
Change Statistics:
 0 files changed
Modified: trunk/main/astmm.c
URL: http://svn.digium.com/view/asterisk/trunk/main/astmm.c?view=diff&rev=100224&r1=100223&r2=100224
==============================================================================
--- trunk/main/astmm.c (original)
+++ trunk/main/astmm.c Thu Jan 24 12:35:04 2008
@@ -65,7 +65,7 @@
 
 static struct ast_region {
 	struct ast_region *next;
-	char file[40];
+	char file[64];
 	char func[40];
 	unsigned int lineno;
 	enum func_type which;
    
    
More information about the asterisk-commits
mailing list