[svn-commits] branch 1.2 r30037 - /branches/1.2/apps/app_meetme.c

svn-commits at lists.digium.com svn-commits at lists.digium.com
Wed May 24 12:55:22 MST 2006


Author: mogorman
Date: Wed May 24 14:55:21 2006
New Revision: 30037

URL: http://svn.digium.com/view/asterisk?rev=30037&view=rev
Log:
app_meemte used the ast_max_exten instead of path_max
solves bug 6822

Modified:
    branches/1.2/apps/app_meetme.c

Modified: branches/1.2/apps/app_meetme.c
URL: http://svn.digium.com/view/asterisk/branches/1.2/apps/app_meetme.c?rev=30037&r1=30036&r2=30037&view=diff
==============================================================================
--- branches/1.2/apps/app_meetme.c (original)
+++ branches/1.2/apps/app_meetme.c Wed May 24 14:55:21 2006
@@ -165,7 +165,7 @@
 	int talking;				/* Is user talking */
 	int zapchannel;				/* Is a Zaptel channel */
 	char usrvalue[50];			/* Custom User Value */
-	char namerecloc[AST_MAX_EXTENSION];	/* Name Recorded file Location */
+	char namerecloc[PATH_MAX];	/* Name Recorded file Location */
 	time_t jointime;			/* Time the user joined the conference */
 	struct volume talk;
 	struct volume listen;



More information about the svn-commits mailing list