mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-04-04 17:02:24 +00:00
Update filesrch.c
Check if S_ISLNK is defined, if not, skip symlink code
This commit is contained in:
parent
e368f95f3a
commit
13055a1ae4
1 changed files with 9 additions and 2 deletions
|
@ -23,6 +23,11 @@
|
|||
#include <windows.h>
|
||||
#endif
|
||||
#include <sys/stat.h>
|
||||
|
||||
#ifndef S_ISLNK
|
||||
#define IGNORE_SYMLINKS
|
||||
#endif
|
||||
|
||||
#ifndef IGNORE_SYMLINKS
|
||||
#include <unistd.h>
|
||||
#include <libgen.h>
|
||||
|
@ -467,8 +472,10 @@ filestatus_t filesearch(char *filename, const char *startpath, const UINT8 *want
|
|||
else
|
||||
strcpy(filename,dent->d_name);
|
||||
#ifndef IGNORE_SYMLINKS
|
||||
if (lstat(filename, &statbuf) != -1) {
|
||||
if (S_ISLNK(statbuf.st_mode)) {
|
||||
if (lstat(filename, &statbuf) != -1)
|
||||
{
|
||||
if (S_ISLNK(statbuf.st_mode))
|
||||
{
|
||||
char *tempbuf = realpath(filename, NULL);
|
||||
if (!tempbuf)
|
||||
I_Error("Error parsing link %s: %s", filename, strerror(errno));
|
||||
|
|
Loading…
Reference in a new issue