summaryrefslogtreecommitdiff
path: root/channel.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2003-07-16 18:54:16 +0000
committerMark Spencer <markster@digium.com>2003-07-16 18:54:16 +0000
commit2984b40bc9e721af86458a3494fd016ec6511491 (patch)
tree7b0cb38ddf49b4b1e3ffd2780d6ad34e3eb3e58f /channel.c
parentcd16a399e5aa50adddbfa739a706abd8bb573ed9 (diff)
Fix race in agent/masquerade
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1196 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channel.c')
-rwxr-xr-xchannel.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/channel.c b/channel.c
index 4eddb9c9f..bcbf8f11a 100755
--- a/channel.c
+++ b/channel.c
@@ -1811,6 +1811,7 @@ int ast_channel_masquerade(struct ast_channel *original, struct ast_channel *clo
not really safe not to XXX */
ast_queue_frame(original, &null, 0);
ast_queue_frame(clone, &null, 0);
+ ast_log(LOG_DEBUG, "Done planning to masquerade %s into the structure of %s\n", original->name, clone->name);
return 0;
}