[asterisk-commits] mmichelson: branch mmichelson/queue-reset r167169 - /team/mmichelson/queue-re...

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Sun Jan 4 14:59:07 CST 2009


Author: mmichelson
Date: Sun Jan  4 14:59:07 2009
New Revision: 167169

URL: http://svn.digium.com/view/asterisk?view=rev&rev=167169
Log:
Some very minor comment modifications


Modified:
    team/mmichelson/queue-reset/apps/app_queue.c

Modified: team/mmichelson/queue-reset/apps/app_queue.c
URL: http://svn.digium.com/view/asterisk/team/mmichelson/queue-reset/apps/app_queue.c?view=diff&rev=167169&r1=167168&r2=167169
==============================================================================
--- team/mmichelson/queue-reset/apps/app_queue.c (original)
+++ team/mmichelson/queue-reset/apps/app_queue.c Sun Jan  4 14:59:07 2009
@@ -5738,7 +5738,7 @@
 	
 	/* Mark all queues as dead for the moment if we're reloading queues.
 	 * For clarity, we could just be reloading members, in which case we don't want to mess
-	 * with the actual queues at all*/
+	 * with the other queue parameters at all*/
 	if (queue_reload) {
 		queue_iter = ao2_iterator_init(queues, F_AO2I_DONTLOCK);
 		while ((q = ao2_iterator_next(&queue_iter))) {
@@ -5763,7 +5763,7 @@
 	}
 	
 	ast_config_destroy(cfg);
-	/* Deref all the dead queues if we were reloading queues */
+	/* Unref all the dead queues if we were reloading queues */
 	if (queue_reload) {
 		queue_iter = ao2_iterator_init(queues, 0);
 		while ((q = ao2_iterator_next(&queue_iter))) {




More information about the asterisk-commits mailing list