diff -ur glibc-2.21.orig/elf/sln.c glibc-2.21/elf/sln.c --- glibc-2.21.orig/elf/sln.c 2016-03-03 17:14:39.354016262 -0500 +++ glibc-2.21/elf/sln.c 2016-03-03 17:16:01.237294246 -0500 @@ -167,11 +167,11 @@ const char *src; const char *dest; { - struct stat stats; + struct stat64 stats; const char *error; /* Destination must not be a directory. */ - if (lstat (dest, &stats) == 0) + if (lstat64 (dest, &stats) == 0) { if (S_ISDIR (stats.st_mode)) {