[asterisk-commits] mmichelson: branch 1.6.0 r163086 - in /branches/1.6.0: ./ apps/app_queue.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Dec 11 10:49:18 CST 2008
Author: mmichelson
Date: Thu Dec 11 10:49:18 2008
New Revision: 163086
URL: http://svn.digium.com/view/asterisk?view=rev&rev=163086
Log:
Merged revisions 163085 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
................
r163085 | mmichelson | 2008-12-11 10:47:34 -0600 (Thu, 11 Dec 2008) | 12 lines
Merged revisions 163084 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r163084 | mmichelson | 2008-12-11 10:46:22 -0600 (Thu, 11 Dec 2008) | 4 lines
Revert this cast to long. Using time_t here causes build failures on a
FreeBSD 32-bit build.
........
................
Modified:
branches/1.6.0/ (props changed)
branches/1.6.0/apps/app_queue.c
Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.0/apps/app_queue.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.0/apps/app_queue.c?view=diff&rev=163086&r1=163085&r2=163086
==============================================================================
--- branches/1.6.0/apps/app_queue.c (original)
+++ branches/1.6.0/apps/app_queue.c Thu Dec 11 10:49:18 2008
@@ -3104,8 +3104,8 @@
struct ast_datastore *datastore;
ast_queue_log(qe->parent->name, qe->chan->uniqueid, member->membername, "TRANSFER", "%s|%s|%ld|%ld",
- new_chan->exten, new_chan->context, (time_t) (callstart - qe->start),
- (time_t) (time(NULL) - callstart));
+ new_chan->exten, new_chan->context, (long) (callstart - qe->start),
+ (long) (time(NULL) - callstart));
update_queue(qe->parent, member, callcompletedinsl);
More information about the asterisk-commits
mailing list