summaryrefslogtreecommitdiff
path: root/apps/app_zapbarge.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 /apps/app_zapbarge.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 'apps/app_zapbarge.c')
-rwxr-xr-xapps/app_zapbarge.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/app_zapbarge.c b/apps/app_zapbarge.c
index 0b865df5b..1c03afc0b 100755
--- a/apps/app_zapbarge.c
+++ b/apps/app_zapbarge.c
@@ -93,13 +93,13 @@ static int conf_run(struct ast_channel *chan, int confno, int confflags)
char *buf = __buf + AST_FRIENDLY_OFFSET;
/* Set it into U-law mode (write) */
- if (ast_set_write_format(chan, AST_FORMAT_ULAW) < 0) {
+ if (ast_set_write_format(chan, AST_FORMAT_ULAW, 1) < 0) {
ast_log(LOG_WARNING, "Unable to set '%s' to write ulaw mode\n", chan->name);
goto outrun;
}
/* Set it into U-law mode (read) */
- if (ast_set_read_format(chan, AST_FORMAT_ULAW) < 0) {
+ if (ast_set_read_format(chan, AST_FORMAT_ULAW, 1) < 0) {
ast_log(LOG_WARNING, "Unable to set '%s' to read ulaw mode\n", chan->name);
goto outrun;
}