summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2007-11-15 18:15:48 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2007-11-15 18:15:48 +0000
commit8044dce3c08d66fcb122c1902229eebd5cb997fa (patch)
tree3153dfa58145ea226440256a0e5215637c9d6fad /apps
parentfc74a46ee25c8f3817b3bbbbb62a0870d731aaf8 (diff)
Fix trunk breakage due to chan->lock being renamed.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@89300 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps')
-rw-r--r--apps/app_zapscan.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/app_zapscan.c b/apps/app_zapscan.c
index 5a0cc8a9b..343c47da6 100644
--- a/apps/app_zapscan.c
+++ b/apps/app_zapscan.c
@@ -340,7 +340,7 @@ static int conf_exec(struct ast_channel *chan, void *data)
if (tempchan && (!strcmp(tempchan->tech->type, "Zap")) && (tempchan != chan) ) {
ast_verb(3, "Zap channel %s is in-use, monitoring...\n", tempchan->name);
ast_copy_string(confstr, tempchan->name, sizeof(confstr));
- ast_mutex_unlock(&tempchan->lock);
+ ast_channel_unlock(tempchan);
if ((tmp = strchr(confstr,'-'))) {
*tmp = '\0';
}
@@ -351,7 +351,7 @@ static int conf_exec(struct ast_channel *chan, void *data)
if (res<0) break;
input = res;
} else if (tempchan)
- ast_mutex_unlock(&tempchan->lock);
+ ast_channel_unlock(tempchan);
lastchan = tempchan;
}
return res;