mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
Ready for version 0.4.4
This commit is contained in:
parent
47c61bafe3
commit
710d2e351b
16 changed files with 424 additions and 379 deletions
|
@ -4,6 +4,8 @@ Fri Nov 20 16:54:52 1998 Werner Koch (wk@isil.d.shuttle.de)
|
|||
* sign.c (write_dashed_escaped): Ditto.
|
||||
* armor.c (find_header): Support for NotDashEscaped header.
|
||||
|
||||
* getkey.c: print "disabled cache.." only if verbose is used.
|
||||
|
||||
Thu Nov 19 07:17:31 1998 Werner Koch <werner.koch@guug.de>
|
||||
|
||||
* parse-packet.c (dump_sig_subpkt): Fixed expire listing
|
||||
|
|
|
@ -160,7 +160,8 @@ cache_public_key( PKT_public_key *pk )
|
|||
if( pk_cache_entries >= MAX_PK_CACHE_ENTRIES ) {
|
||||
/* fixme: use another algorithm to free some cache slots */
|
||||
pk_cache_disabled=1;
|
||||
log_info(_("too many entries in pk cache - disabled\n"));
|
||||
if( opt.verbose )
|
||||
log_info(_("too many entries in pk cache - disabled\n"));
|
||||
return;
|
||||
}
|
||||
pk_cache_entries++;
|
||||
|
@ -258,7 +259,8 @@ get_pubkey( PKT_public_key *pk, u32 *keyid )
|
|||
;
|
||||
else if( ++unk_cache_entries > MAX_UNK_CACHE_ENTRIES ) {
|
||||
unk_cache_disabled = 1;
|
||||
log_info(_("too many entries in unk cache - disabled\n"));
|
||||
if( opt.verbose )
|
||||
log_info(_("too many entries in unk cache - disabled\n"));
|
||||
}
|
||||
else {
|
||||
keyid_list_t kl;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue