aboutsummaryrefslogtreecommitdiffstats
path: root/channel.c
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-07-16 18:54:16 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-07-16 18:54:16 +0000
commitc27c435bd9bb41e3c8fa4facc330475ea86ec750 (patch)
tree7b0cb38ddf49b4b1e3ffd2780d6ad34e3eb3e58f /channel.c
parent373925d69e35d516f80ff8067f792a826cc2ab71 (diff)
Fix race in agent/masquerade
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1196 f38db490-d61c-443f-a65b-d21fe96a405b
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;
}