summaryrefslogtreecommitdiff
path: root/file.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-06-23 18:00:50 +0000
committerMark Spencer <markster@digium.com>2004-06-23 18:00:50 +0000
commit74fdefdf1e2be225a728d1ea2d4201cee9ebf87b (patch)
tree33d4fa4dbacb300bef77eaf0cf137ea082ca82d0 /file.c
parent68248b91f0685209bcb14c95e0169c7a45e7e4e1 (diff)
Merge Tilghman's voicemail broadcast improvements (thanks!)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3287 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'file.c')
-rwxr-xr-xfile.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/file.c b/file.c
index d5d1f8e94..d23879edf 100755
--- a/file.c
+++ b/file.c
@@ -28,6 +28,7 @@
#include <stdio.h>
#include <fcntl.h>
#include <dirent.h>
+#include <sys/types.h>
#include <sys/stat.h>
#include "asterisk.h"
#include "astconf.h"
@@ -241,6 +242,7 @@ static int copy(char *infile, char *outfile)
int res;
int len;
char buf[4096];
+
if ((ifd = open(infile, O_RDONLY)) < 0) {
ast_log(LOG_WARNING, "Unable to open %s in read-only mode\n", infile);
return -1;
@@ -343,6 +345,9 @@ static int ast_filehelper(char *filename, char *filename2, char *fmt, int action
/* Try each kind of extension */
stringp=exts;
ext = strsep(&stringp, "|");
+ if (!strcmp(ext,"wav49")) {
+ ext = "WAV";
+ }
do {
fn = build_filename(filename, ext);
if (fn) {