mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-26 09:05:39 +01:00
Missing 'else' in gen_key
This commit is contained in:
parent
6a28e722c9
commit
247b487d61
@ -170,7 +170,7 @@ int main( int argc, char *argv[] )
|
|||||||
{
|
{
|
||||||
if( strcmp( q, "rsa" ) == 0 )
|
if( strcmp( q, "rsa" ) == 0 )
|
||||||
opt.type = POLARSSL_PK_RSA;
|
opt.type = POLARSSL_PK_RSA;
|
||||||
if( strcmp( q, "ec" ) == 0 )
|
else if( strcmp( q, "ec" ) == 0 )
|
||||||
opt.type = POLARSSL_PK_ECKEY;
|
opt.type = POLARSSL_PK_ECKEY;
|
||||||
else
|
else
|
||||||
goto usage;
|
goto usage;
|
||||||
|
Loading…
Reference in New Issue
Block a user