summaryrefslogtreecommitdiff
path: root/channel.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2005-06-14 18:09:56 +0000
committerRussell Bryant <russell@russellbryant.com>2005-06-14 18:09:56 +0000
commitb71be71262e30fa5cda05ee384e210236509ae88 (patch)
tree5ad82180819d36a08df6a9d11b552eaab10f7e20 /channel.c
parent86511f89fb434314c672fc223b38b159aa270d52 (diff)
fix deadlock message output (bug #4508)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5907 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channel.c')
-rwxr-xr-xchannel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channel.c b/channel.c
index b0a4b2c3c..08befad43 100755
--- a/channel.c
+++ b/channel.c
@@ -544,7 +544,7 @@ void ast_channel_undefer_dtmf(struct ast_channel *chan)
static struct ast_channel *channel_find_locked(const struct ast_channel *prev,
const char *name)
{
- const char *msg = prev ? "initial deadlock" : "deadlock";
+ const char *msg = prev ? "deadlock" : "initial deadlock";
int retries, done;
struct ast_channel *c;