[svn-commits] seanbright: trunk r135598 - in /trunk: ./ main/cli.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Aug 5 08:26:35 CDT 2008


Author: seanbright
Date: Tue Aug  5 08:26:34 2008
New Revision: 135598

URL: http://svn.digium.com/view/asterisk?view=rev&rev=135598
Log:
Merged revisions 135597 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r135597 | seanbright | 2008-08-05 09:25:00 -0400 (Tue, 05 Aug 2008) | 1 line

Use PATH_MAX for filenames
........

Modified:
    trunk/   (props changed)
    trunk/main/cli.c

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.

Modified: trunk/main/cli.c
URL: http://svn.digium.com/view/asterisk/trunk/main/cli.c?view=diff&rev=135598&r1=135597&r2=135598
==============================================================================
--- trunk/main/cli.c (original)
+++ trunk/main/cli.c Tue Aug  5 08:26:34 2008
@@ -122,7 +122,7 @@
 static char *complete_fn(const char *word, int state)
 {
 	char *c, *d;
-	char filename[256];
+	char filename[PATH_MAX];
 
 	if (word[0] == '/')
 		ast_copy_string(filename, word, sizeof(filename));




More information about the svn-commits mailing list