[asterisk-commits] russell: trunk r53038 - in /trunk: ./ apps/app_queue.c

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Wed Jan 31 10:39:55 MST 2007


Author: russell
Date: Wed Jan 31 11:39:55 2007
New Revision: 53038

URL: http://svn.digium.com/view/asterisk?view=rev&rev=53038
Log:
Merged revisions 53037 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r53037 | russell | 2007-01-31 11:39:28 -0600 (Wed, 31 Jan 2007) | 3 lines

Only changed the paused status in an existing queue member if the paused
column exists.

........

Modified:
    trunk/   (props changed)
    trunk/apps/app_queue.c

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.

Modified: trunk/apps/app_queue.c
URL: http://svn.digium.com/view/asterisk/trunk/apps/app_queue.c?view=diff&rev=53038&r1=53037&r2=53038
==============================================================================
--- trunk/apps/app_queue.c (original)
+++ trunk/apps/app_queue.c Wed Jan 31 11:39:55 2007
@@ -992,7 +992,8 @@
 		}
 	} else {
 		m->dead = 0;	/* Do not delete this one. */
-		m->paused = paused;
+		if (paused_str)
+			m->paused = paused;
 		m->penalty = penalty;
 	}
 }



More information about the asterisk-commits mailing list