From 5acf40987d242dc3f7c9329b8b9b61b3e512113a Mon Sep 17 00:00:00 2001 From: markster Date: Sat, 27 Mar 2004 06:50:12 +0000 Subject: 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 --- apps/app_zapbarge.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/app_zapbarge.c') 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; } -- cgit v1.2.3