summaryrefslogtreecommitdiff
path: root/apps/app_minivm.c
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2008-10-09 21:37:23 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2008-10-09 21:37:23 +0000
commitf5d5eb5e19282177f875c5670dd04ca99823a171 (patch)
treef543e9e0621f0f91851b3a80186986917cb10651 /apps/app_minivm.c
parent9a56bae67a7ef76912e8e4f2bdc1555cff79f0f5 (diff)
Fudges for wav16, just like wav49
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@148070 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_minivm.c')
-rw-r--r--apps/app_minivm.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/app_minivm.c b/apps/app_minivm.c
index c151068df..b900f2f1b 100644
--- a/apps/app_minivm.c
+++ b/apps/app_minivm.c
@@ -917,8 +917,11 @@ static int sendmail(struct minivm_template *template, struct minivm_account *vmu
ast_debug(3, "-_-_- Sending mail to %s@%s - Using template %s\n", vmu->username, vmu->domain, template->name);
- if (!strcmp(format, "wav49"))
+ if (!strcmp(format, "wav49")) {
format = "WAV";
+ } else if (!strcmp(format, "wav16")) {
+ format = "Wav";
+ }
/* If we have a gain option, process it now with sox */