[Asterisk-cvs] asterisk channel.c,1.235,1.236

kpfleming kpfleming
Wed Aug 31 17:27:06 CDT 2005


Update of /usr/cvsroot/asterisk
In directory mongoose.digium.com:/tmp/cvs-serv30480

Modified Files:
	channel.c 
Log Message:
clarify comments (issue #5075)


Index: channel.c
===================================================================
RCS file: /usr/cvsroot/asterisk/channel.c,v
retrieving revision 1.235
retrieving revision 1.236
diff -u -d -r1.235 -r1.236
--- channel.c	30 Aug 2005 02:12:09 -0000	1.235
+++ channel.c	31 Aug 2005 21:28:12 -0000	1.236
@@ -2417,7 +2417,7 @@
 		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 @@
 		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);




More information about the svn-commits mailing list