[asterisk-commits] qwell: branch 1.4 r75807 - /branches/1.4/channels/chan_skinny.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Wed Jul 18 17:59:18 CDT 2007


Author: qwell
Date: Wed Jul 18 17:59:18 2007
New Revision: 75807

URL: http://svn.digium.com/view/asterisk?view=rev&rev=75807
Log:
Need to make sure we set milliseconds and timestamp - pointed out by the recent ast_ time stuff from Tilghman

Modified:
    branches/1.4/channels/chan_skinny.c

Modified: branches/1.4/channels/chan_skinny.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/channels/chan_skinny.c?view=diff&rev=75807&r1=75806&r2=75807
==============================================================================
--- branches/1.4/channels/chan_skinny.c (original)
+++ branches/1.4/channels/chan_skinny.c Wed Jul 18 17:59:18 2007
@@ -3529,6 +3529,8 @@
 	req->data.definetimedate.hour = htolel(cmtime->tm_hour);
 	req->data.definetimedate.minute = htolel(cmtime->tm_min);
 	req->data.definetimedate.seconds = htolel(cmtime->tm_sec);
+	req->data.definetimedate.milliseconds = htolel(0);
+	req->data.definetimedate.timestamp = htolel(timer);
 	transmit_response(s, req);
 	return 1;
 }




More information about the asterisk-commits mailing list