mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
gst-libs/gst/rtsp/gstrtspconnection.c: Cast glong to time_t as time_t might have a different type on other platforms,...
Original commit message from CVS: * gst-libs/gst/rtsp/gstrtspconnection.c: (add_date_header): Cast glong to time_t as time_t might have a different type on other platforms, like FreeBSD, and we get a compiler warning otherwise. Fixes bug #511825.
This commit is contained in:
parent
899330d904
commit
044f629784
2 changed files with 10 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2008-02-02 Sebastian Dröge <slomo@circular-chaos.org>
|
||||||
|
|
||||||
|
* gst-libs/gst/rtsp/gstrtspconnection.c: (add_date_header):
|
||||||
|
Cast glong to time_t as time_t might have a different type on
|
||||||
|
other platforms, like FreeBSD, and we get a compiler warning
|
||||||
|
otherwise. Fixes bug #511825.
|
||||||
|
|
||||||
2008-02-01 Wim Taymans <wim.taymans@collabora.co.uk>
|
2008-02-01 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||||
|
|
||||||
* gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
|
* gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
|
||||||
|
|
|
@ -368,10 +368,12 @@ add_date_header (GstRTSPMessage * message)
|
||||||
{
|
{
|
||||||
GTimeVal tv;
|
GTimeVal tv;
|
||||||
gchar date_string[100];
|
gchar date_string[100];
|
||||||
|
time_t t;
|
||||||
|
|
||||||
g_get_current_time (&tv);
|
g_get_current_time (&tv);
|
||||||
|
t = (time_t) tv.tv_sec;
|
||||||
strftime (date_string, sizeof (date_string), "%a, %d %b %Y %H:%M:%S GMT",
|
strftime (date_string, sizeof (date_string), "%a, %d %b %Y %H:%M:%S GMT",
|
||||||
gmtime (&tv.tv_sec));
|
gmtime (&t));
|
||||||
|
|
||||||
gst_rtsp_message_add_header (message, GST_RTSP_HDR_DATE, date_string);
|
gst_rtsp_message_add_header (message, GST_RTSP_HDR_DATE, date_string);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue