From 2531fca5775de277dbf3fab938e0385e0287d2a4 Mon Sep 17 00:00:00 2001 From: Jan Schmidt Date: Wed, 30 Jan 2008 12:28:59 +0000 Subject: [PATCH] gst-libs/gst/rtsp/gstrtspconnection.c: Revert patch to gstrtspconnection.c for brown paper bag release of -base. Re-o... Original commit message from CVS: * gst-libs/gst/rtsp/gstrtspconnection.c: Revert patch to gstrtspconnection.c for brown paper bag release of -base. Re-opens: #511825 --- ChangeLog | 6 ++++++ gst-libs/gst/rtsp/gstrtspconnection.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index f80455b655..6688e39409 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-01-30 Jan Schmidt + + * gst-libs/gst/rtsp/gstrtspconnection.c: + Revert patch to gstrtspconnection.c for brown paper bag + release of -base. Re-opens: #511825 + 2008-01-30 Jan Schmidt * gst-libs/gst/interfaces/mixeroptions.h: diff --git a/gst-libs/gst/rtsp/gstrtspconnection.c b/gst-libs/gst/rtsp/gstrtspconnection.c index c6fd2a845c..48ffda237a 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 ((time_t *) & tv.tv_sec)); + gmtime (&tv.tv_sec)); gst_rtsp_message_add_header (message, GST_RTSP_HDR_DATE, date_string); }