aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_meetme.c
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2005-01-23 09:05:01 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2005-01-23 09:05:01 +0000
commit64395b9b51d72b0a9fce569a58271d2e385dac9e (patch)
tree00d821ddd8076cb5e3f926581cb1b291b05b3792 /apps/app_meetme.c
parenta3a8a2b9dc120cccffbb20c7f3c7aacedf30cd2e (diff)
Make sure two voicemails can't take the same message space (bug #3394)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4881 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_meetme.c')
-rwxr-xr-xapps/app_meetme.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_meetme.c b/apps/app_meetme.c
index e53c8bb65..9385269f6 100755
--- a/apps/app_meetme.c
+++ b/apps/app_meetme.c
@@ -626,7 +626,7 @@ static int conf_run(struct ast_channel *chan, struct ast_conference *conf, int c
snprintf(user->namerecloc,sizeof(user->namerecloc),"%s/meetme-username-%s-%d",AST_SPOOL_DIR,conf->confno,user->user_no);
if (!(confflags & CONFFLAG_QUIET) && (confflags & CONFFLAG_INTROUSER))
- ast_record_review(chan,"vm-rec-name",user->namerecloc, 10,"sln", &duration);
+ ast_record_review(chan,"vm-rec-name",user->namerecloc, 10,"sln", &duration, NULL);
while((confflags & CONFFLAG_WAITMARKED) && (conf->markedusers == 0)) {
confflags &= ~CONFFLAG_QUIET;