aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_zapbarge.c
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-03-27 06:50:12 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-03-27 06:50:12 +0000
commit5acf40987d242dc3f7c9329b8b9b61b3e512113a (patch)
tree8787e6295801bf6156269a895cc43bd31aaab412 /apps/app_zapbarge.c
parentf23e53be88380f4dde772c5fd4c336271d01ebc4 (diff)
Make read/write mode have a lock parameter and use it properly.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@2572 f38db490-d61c-443f-a65b-d21fe96a405b
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;
}