Revert "Merge pull request #3008 from jp-bennett/development"
This reverts commit c0c92fea3d105519a03a0cd1c5aa9f4f6093ab08, reversing
changes made to bfc73bcfd2585311c8e671e0817045a95628c6fd.
stat() will never return S_IFLNK as the file type, as stat() explicitly
follows symlinks.
Fixes #3005.
diff --git a/library/x509_crt.c b/library/x509_crt.c
index ca60011..38e69cc 100644
--- a/library/x509_crt.c
+++ b/library/x509_crt.c
@@ -1613,7 +1613,7 @@
goto cleanup;
}
- if( !( S_ISREG( sb.st_mode ) || S_ISLNK( sb.st_mode ) ) )
+ if( !S_ISREG( sb.st_mode ) )
continue;
// Ignore parse errors