summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMatt O'Gorman <mogorman@digium.com>2006-05-24 20:07:02 +0000
committerMatt O'Gorman <mogorman@digium.com>2006-05-24 20:07:02 +0000
commit5a005e8ac82eb39338a9a0bdacf5a23851bd29a6 (patch)
tree9f3d063def3e03ff92f1ebf7e0903e68511b0aeb /apps
parent91f9966be3c58137e7265121ae4be013d7592378 (diff)
Merged revisions 30037 via svnmerge from
https://svn.digium.com/svn/asterisk/branches/1.2 ........ r30037 | mogorman | 2006-05-24 14:55:21 -0500 (Wed, 24 May 2006) | 3 lines app_meemte used the ast_max_exten instead of path_max solves bug 6822 ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@30068 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps')
-rw-r--r--apps/app_meetme.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_meetme.c b/apps/app_meetme.c
index e6fed570b..3dd7a97ec 100644
--- a/apps/app_meetme.c
+++ b/apps/app_meetme.c
@@ -299,7 +299,7 @@ struct ast_conf_user {
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;