mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
Fix for toupper('I') != 'i'
This commit is contained in:
parent
ff170c94f1
commit
01fe1dd2a9
22 changed files with 156 additions and 47 deletions
|
@ -721,7 +721,7 @@ keyedit_menu( const char *username, STRLIST locusr, STRLIST commands,
|
|||
}
|
||||
|
||||
for(i=0; cmds[i].name; i++ ) {
|
||||
if( !stricmp( answer, cmds[i].name ) )
|
||||
if( !ascii_strcasecmp( answer, cmds[i].name ) )
|
||||
break;
|
||||
}
|
||||
if( sign_mode && !cmds[i].signmode )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue