[asterisk-addons-commits] qwell: branch 1.6.0 r593 - in /branches/1.6.0: ./ channels/ooh323c/src/ootrace.c
SVN commits to the Asterisk addons project
asterisk-addons-commits at lists.digium.com
Mon May 5 12:07:50 CDT 2008
Author: qwell
Date: Mon May 5 12:07:49 2008
New Revision: 593
URL: http://svn.digium.com/view/asterisk-addons?view=rev&rev=593
Log:
Merged revisions 592 via svnmerge from
https://origsvn.digium.com/svn/asterisk-addons/trunk
........
r592 | qwell | 2008-05-05 12:06:41 -0500 (Mon, 05 May 2008) | 1 line
Uses unambiguous non-US-centric date format. Also (and mainly), %D uses %y, which is only 2 digits. gcc warns about using this.
........
Modified:
branches/1.6.0/ (props changed)
branches/1.6.0/channels/ooh323c/src/ootrace.c
Propchange: branches/1.6.0/
------------------------------------------------------------------------------
--- trunk-merged (original)
+++ trunk-merged Mon May 5 12:07:49 2008
@@ -1,1 +1,1 @@
-/trunk:540-559,575,579,583,586,588,590
+/trunk:540-559,575,579,583,586,588,590,592
Modified: branches/1.6.0/channels/ooh323c/src/ootrace.c
URL: http://svn.digium.com/view/asterisk-addons/branches/1.6.0/channels/ooh323c/src/ootrace.c?view=diff&rev=593&r1=592&r2=593
==============================================================================
--- branches/1.6.0/channels/ooh323c/src/ootrace.c (original)
+++ branches/1.6.0/channels/ooh323c/src/ootrace.c Mon May 5 12:07:49 2008
@@ -100,7 +100,7 @@
if(printDate)
{
printDate = 0;
- strftime(dateString, 10, "%D", ptime);
+ strftime(dateString, 10, "%F", ptime);
fprintf(gH323ep.fptraceFile, "---------Date %s---------\n",
dateString);
}
More information about the asterisk-addons-commits
mailing list