Colin Watson wrote: > I happened to notice a typo in canonicalize-lgpl.c. Patch attached.
Thanks, applied: 2008-01-10 Colin Watson <[EMAIL PROTECTED]> * lib/canonicalize-lgpl.c (lstat): Fix typo in #if condition. *** lib/canonicalize-lgpl.c.orig 2008-01-10 10:45:50.000000000 +0100 --- lib/canonicalize-lgpl.c 2008-01-10 10:44:19.000000000 +0100 *************** *** 1,5 **** /* Return the canonical absolute name of a given file. ! Copyright (C) 1996-2003, 2005-2007 Free Software Foundation, Inc. This file is part of the GNU C Library. This program is free software: you can redistribute it and/or modify --- 1,5 ---- /* Return the canonical absolute name of a given file. ! Copyright (C) 1996-2003, 2005-2008 Free Software Foundation, Inc. This file is part of the GNU C Library. This program is free software: you can redistribute it and/or modify *************** *** 78,84 **** # endif # define __readlink readlink /* On systems without symbolic links, call stat() instead of lstat(). */ ! # if !defined S_ISNLK && !HAVE_READLINK # define lstat stat # endif #endif --- 78,84 ---- # endif # define __readlink readlink /* On systems without symbolic links, call stat() instead of lstat(). */ ! # if !defined S_ISLNK && !HAVE_READLINK # define lstat stat # endif #endif