mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-30 22:43:08 +03:00
Merge pull request #3008 from jp-bennett/development
Allow loading symlinked certificates
This commit is contained in:
@ -1613,7 +1613,7 @@ cleanup:
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
if( !S_ISREG( sb.st_mode ) )
|
||||
if( !( S_ISREG( sb.st_mode ) || S_ISLNK( sb.st_mode ) ) )
|
||||
continue;
|
||||
|
||||
// Ignore parse errors
|
||||
|
Reference in New Issue
Block a user