add check for symlinks

This commit is contained in:
Chris Cromer 2018-12-08 15:53:58 -03:00
parent 7837d51ab6
commit 38f31bb21f
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ int read_file(char *filename, point_t **points, unsigned int *n) {
int j = 0;
struct stat statbuff;
stat(filename, &statbuff);
lstat(filename, &statbuff);
if (access(filename, F_OK) || !S_ISREG(statbuff.st_mode)) {
fprintf(stderr, "Error: El archivo \"%s\" no existe!\n", filename);
return 1;