diff options
Diffstat (limited to 'cipher/pubkey.c')
-rw-r--r-- | cipher/pubkey.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cipher/pubkey.c b/cipher/pubkey.c index 7e320856e..9136fa544 100644 --- a/cipher/pubkey.c +++ b/cipher/pubkey.c @@ -296,7 +296,7 @@ string_to_pubkey_algo( const char *string ) do { for(i=0; (s=pubkey_table[i].name); i++ ) - if( !stricmp( s, string ) ) + if( !ascii_strcasecmp( s, string ) ) return pubkey_table[i].algo; } while( load_pubkey_modules() ); return 0; |