mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
Allow to build w/o curl.
This commit is contained in:
parent
39600e7278
commit
29f68725d0
13 changed files with 169 additions and 36 deletions
|
@ -1,3 +1,8 @@
|
|||
2006-08-21 Werner Koch <wk@g10code.com>
|
||||
|
||||
* skclist.c (is_insecure): Also test for uppercase version of the
|
||||
insecure string.
|
||||
|
||||
2006-07-31 Werner Koch <wk@g10code.com>
|
||||
|
||||
* openfile.c (open_outfile) [USE_ONLY_8DOT3]: Search backwards for
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue