diff --git a/gio/ChangeLog b/gio/ChangeLog index c7dca62d1..f15099e76 100644 --- a/gio/ChangeLog +++ b/gio/ChangeLog @@ -1,3 +1,9 @@ +2009-02-25 Paolo Borelli + + Bug 570069 – wrong preprocessor directive in gio/glocalfileinfo.c + + * glocalfileinfo.c: fix preprocessor condition. Patch by Markus Duft. + 2009-02-23 Alexander Larsson * glocalfile.c: diff --git a/gio/glocalfileinfo.c b/gio/glocalfileinfo.c index 7ecc9fccd..8cbfcf11d 100644 --- a/gio/glocalfileinfo.c +++ b/gio/glocalfileinfo.c @@ -2171,7 +2171,7 @@ _g_local_file_info_set_attributes (char *filename, #ifdef HAVE_UTIMES GFileAttributeValue *mtime, *mtime_usec, *atime, *atime_usec; #endif -#if defined (HAVE_CHOWN) && defined (HAVE_UTIMES) +#if defined (HAVE_CHOWN) || defined (HAVE_UTIMES) GFileAttributeStatus status; #endif gboolean res;