mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
fixes for M_DEBUG, strcasecmp and RISC OS
This commit is contained in:
parent
fecfcb6454
commit
1935d90e1f
18 changed files with 323 additions and 246 deletions
|
@ -1492,7 +1492,8 @@ main( int argc, char **argv )
|
|||
* may try to load an module */
|
||||
if( def_cipher_string ) {
|
||||
opt.def_cipher_algo = string_to_cipher_algo(def_cipher_string);
|
||||
if(opt.def_cipher_algo==0 && strcasecmp(def_cipher_string,"idea")==0)
|
||||
if(opt.def_cipher_algo==0 &&
|
||||
ascii_strcasecmp(def_cipher_string,"idea")==0)
|
||||
idea_cipher_warn(1);
|
||||
m_free(def_cipher_string); def_cipher_string = NULL;
|
||||
if( check_cipher_algo(opt.def_cipher_algo) )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue