Bug 570069 – wrong preprocessor directive in gio/glocalfileinfo.c

2009-02-25  Paolo Borelli  <pborelli@katamail.com>

	Bug 570069 – wrong preprocessor directive in gio/glocalfileinfo.c

	* glocalfileinfo.c: fix preprocessor condition. Patch by Markus Duft.

svn path=/trunk/; revision=7910
This commit is contained in:
Paolo Borelli 2009-02-25 13:30:49 +00:00 committed by Paolo Borelli
parent 49fc31e8ba
commit ddfe508c04
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2009-02-25 Paolo Borelli <pborelli@katamail.com>
Bug 570069 wrong preprocessor directive in gio/glocalfileinfo.c
* glocalfileinfo.c: fix preprocessor condition. Patch by Markus Duft.
2009-02-23 Alexander Larsson <alexl@redhat.com>
* glocalfile.c:

View File

@ -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;