1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-30 22:43:08 +03:00

Fixed that selfsign copies issuer_name to subject_name

This commit is contained in:
Paul Bakker
2013-10-28 22:28:09 +01:00
parent 50dc850c52
commit 93c6aa4014
2 changed files with 2 additions and 1 deletions

View File

@ -512,7 +512,7 @@ int main( int argc, char *argv[] )
if( opt.selfsign )
{
opt.issuer_name = opt.subject_name;
opt.subject_name = opt.issuer_name;
subject_key = issuer_key;
}