From bd4bb423e98e281d81e07ef30de64a230536f483 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Tue, 29 Jan 2008 09:59:03 +0000 Subject: [PATCH] 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. --- ChangeLog | 7 +++++++ gst-libs/gst/rtsp/gstrtspconnection.c | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 9c636ea092..835544a26a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2008-01-29 Sebastian Dröge + + * 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-01-29 Sebastian Dröge * gst-libs/gst/audio/gstaudiofilter.c: diff --git a/gst-libs/gst/rtsp/gstrtspconnection.c b/gst-libs/gst/rtsp/gstrtspconnection.c index 48ffda237a..c6fd2a845c 100644 --- a/gst-libs/gst/rtsp/gstrtspconnection.c +++ b/gst-libs/gst/rtsp/gstrtspconnection.c @@ -371,7 +371,7 @@ add_date_header (GstRTSPMessage * message) g_get_current_time (&tv); strftime (date_string, sizeof (date_string), "%a, %d %b %Y %H:%M:%S GMT", - gmtime (&tv.tv_sec)); + gmtime ((time_t *) & tv.tv_sec)); gst_rtsp_message_add_header (message, GST_RTSP_HDR_DATE, date_string); }