diff options
Diffstat (limited to 'g10')
-rw-r--r-- | g10/ChangeLog | 5 | ||||
-rw-r--r-- | g10/skclist.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/g10/ChangeLog b/g10/ChangeLog index 2c4cef774..bfe4f7a0c 100644 --- a/g10/ChangeLog +++ b/g10/ChangeLog @@ -1,3 +1,8 @@ +2006-08-21 Werner Koch <[email protected]> + + * skclist.c (is_insecure): Also test for uppercase version of the + insecure string. + 2006-07-31 Werner Koch <[email protected]> * openfile.c (open_outfile) [USE_ONLY_8DOT3]: Search backwards for diff --git a/g10/skclist.c b/g10/skclist.c index 21db10c6e..5e55e24ef 100644 --- a/g10/skclist.c +++ b/g10/skclist.c @@ -69,7 +69,8 @@ is_insecure( PKT_secret_key *sk ) continue; /* skip attribute packets */ if ( strstr( id->name, "(insecure!)" ) || strstr( id->name, "not secure" ) - || strstr( id->name, "do not use" ) ) { + || strstr( id->name, "do not use" ) + || strstr( id->name, "(INSECURE!)" ) ) { insecure = 1; break; } |