aboutsummaryrefslogtreecommitdiffstats
path: root/channel.c
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-08-31 21:28:12 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-08-31 21:28:12 +0000
commit0a27fd71e710621e96a9627f28e968cedfd326c4 (patch)
treee3833eee3737db76567acecdbf2118dc4d6d841a /channel.c
parent14703a43801767424a65b234202996895c396631 (diff)
clarify comments (issue #5075)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6474 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channel.c')
-rwxr-xr-xchannel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/channel.c b/channel.c
index 282a7967e..338a568c9 100755
--- a/channel.c
+++ b/channel.c
@@ -2417,7 +2417,7 @@ int ast_channel_masquerade(struct ast_channel *original, struct ast_channel *clo
usleep(1);
ast_mutex_lock(&original->lock);
}
- ast_log(LOG_DEBUG, "Planning to masquerade %s into the structure of %s\n",
+ ast_log(LOG_DEBUG, "Planning to masquerade channel %s into the structure of %s\n",
clone->name, original->name);
if (original->masq) {
ast_log(LOG_WARNING, "%s is already going to masquerade as %s\n",
@@ -2430,7 +2430,7 @@ int ast_channel_masquerade(struct ast_channel *original, struct ast_channel *clo
clone->masqr = original;
ast_queue_frame(original, &null);
ast_queue_frame(clone, &null);
- ast_log(LOG_DEBUG, "Done planning to masquerade %s into the structure of %s\n", original->name, clone->name);
+ ast_log(LOG_DEBUG, "Done planning to masquerade channel %s into the structure of %s\n", clone->name, original->name);
res = 0;
}
ast_mutex_unlock(&clone->lock);