mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-02-03 11:54:02 +00:00
Merge pull request #3033 from yanesca/revert_pr_3008
Revert "Merge pull request #3008 from jp-bennett/development"
This commit is contained in:
commit
755548538e
@ -11,8 +11,6 @@ New deprecations
|
||||
PKCS#11 token such as a smartcard.
|
||||
|
||||
Bugfix
|
||||
* Allow loading symlinked certificates. Fixes #3005. Reported and fixed
|
||||
by Jonathan Bennett <JBennett@incomsystems.biz> via #3008.
|
||||
* Fix an unchecked call to mbedtls_md() in the x509write module.
|
||||
* Fix build failure with MBEDTLS_ZLIB_SUPPORT enabled. Reported by
|
||||
Jack Lloyd in #2859. Fix submitted by jiblime in #2963.
|
||||
|
@ -1613,7 +1613,7 @@ cleanup:
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
if( !( S_ISREG( sb.st_mode ) || S_ISLNK( sb.st_mode ) ) )
|
||||
if( !S_ISREG( sb.st_mode ) )
|
||||
continue;
|
||||
|
||||
// Ignore parse errors
|
||||
|
Loading…
x
Reference in New Issue
Block a user