summaryrefslogtreecommitdiff
path: root/file.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-03-27 06:50:12 +0000
committerMark Spencer <markster@digium.com>2004-03-27 06:50:12 +0000
commiteeb2ca5b26dfb3d47fa9676f1ef35fff64d3aaeb (patch)
tree8787e6295801bf6156269a895cc43bd31aaab412 /file.c
parent4b4c55e32874a1d6f0868bf80f5462636711078f (diff)
Make read/write mode have a lock parameter and use it properly.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2572 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'file.c')
-rwxr-xr-xfile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/file.c b/file.c
index 9cdaec575..578b1febe 100755
--- a/file.c
+++ b/file.c
@@ -166,7 +166,7 @@ int ast_stopstream(struct ast_channel *tmp)
ast_closestream(tmp->vstream);
if (tmp->stream) {
ast_closestream(tmp->stream);
- if (tmp->oldwriteformat && ast_set_write_format(tmp, tmp->oldwriteformat))
+ if (tmp->oldwriteformat && ast_set_write_format(tmp, tmp->oldwriteformat, 1))
ast_log(LOG_WARNING, "Unable to restore format back to %d\n", tmp->oldwriteformat);
}
return 0;
@@ -464,7 +464,7 @@ struct ast_filestream *ast_openstream(struct ast_channel *chan, char *filename,
}
chan->oldwriteformat = chan->writeformat;
/* Set the channel to a format we can work with */
- res = ast_set_write_format(chan, fmts);
+ res = ast_set_write_format(chan, fmts, 1);
fd = ast_filehelper(filename2, (char *)chan, NULL, ACTION_OPEN);
if(fd >= 0)