s/S_ISLINK/S_ISNLK/ (was never compiled before Hans fixed the #ifdef).

2002-12-01  Michael Natterer  <mitch@gimp.org>

	* libgimpwidgets/gimpdatafiles.c: s/S_ISLINK/S_ISNLK/ (was never
	compiled before Hans fixed the #ifdef).
This commit is contained in:
Michael Natterer
2002-12-01 15:15:28 +00:00
committed by Michael Natterer
parent 7c7ff46cc6
commit 7cc8eb21a4
2 changed files with 6 additions and 1 deletions

View File

@ -189,7 +189,7 @@ gimp_datafiles_read_directories (const gchar *path_str,
}
#ifndef G_OS_WIN32
else if ((flags & G_FILE_TEST_IS_SYMLINK) &&
S_ISLINK (filestat.st_mode))
S_ISLNK (filestat.st_mode))
{
(* loader_func) (&file_data);
}