[Xfce4-commits] r22649 - in thunar/trunk: . thunar
Benedikt Meurer
benny at xfce.org
Fri Aug 4 12:11:30 UTC 2006
Author: benny
Date: 2006-08-04 12:11:26 +0000 (Fri, 04 Aug 2006)
New Revision: 22649
Modified:
thunar/trunk/ChangeLog
thunar/trunk/thunar/thunar-util.c
Log:
2006-08-04 Benedikt Meurer <benny at xfce.org>
* thunar/thunar-util.c(thunar_util_time_from_rfc3339): Fix typo.
Modified: thunar/trunk/ChangeLog
===================================================================
--- thunar/trunk/ChangeLog 2006-08-04 12:03:37 UTC (rev 22648)
+++ thunar/trunk/ChangeLog 2006-08-04 12:11:26 UTC (rev 22649)
@@ -1,5 +1,9 @@
2006-08-04 Benedikt Meurer <benny at xfce.org>
+ * thunar/thunar-util.c(thunar_util_time_from_rfc3339): Fix typo.
+
+2006-08-04 Benedikt Meurer <benny at xfce.org>
+
* thunar/thunar-file.c, thunar/thunar-util.{c,h}: Add new helper method
thunar_util_time_from_rfc3339(), which parses a date string to a time
value, using strptime() if available. Use the method to parse the
Modified: thunar/trunk/thunar/thunar-util.c
===================================================================
--- thunar/trunk/thunar/thunar-util.c 2006-08-04 12:03:37 UTC (rev 22648)
+++ thunar/trunk/thunar/thunar-util.c 2006-08-04 12:11:26 UTC (rev 22649)
@@ -209,7 +209,7 @@
{
struct tm tm;
-#ifndef HAVE_STRPTIME
+#ifdef HAVE_STRPTIME
/* using strptime() its easy to parse the date string */
if (G_UNLIKELY (strptime (date_string, "%FT%T", &tm) == NULL))
return 0;
More information about the Xfce4-commits
mailing list