mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
.
This commit is contained in:
parent
d8b888e732
commit
8c80bcf9f0
10 changed files with 52 additions and 15 deletions
|
@ -829,7 +829,6 @@ static int
|
|||
check_sig_and_print( CTX c, KBNODE node )
|
||||
{
|
||||
PKT_signature *sig = node->pkt->pkt.signature;
|
||||
time_t stamp = sig->timestamp;
|
||||
const char *astr, *tstr;
|
||||
int rc;
|
||||
|
||||
|
@ -838,7 +837,7 @@ check_sig_and_print( CTX c, KBNODE node )
|
|||
return 0;
|
||||
}
|
||||
|
||||
tstr = asctime(localtime (&stamp));
|
||||
tstr = asctimestamp(sig->timestamp);
|
||||
astr = pubkey_algo_to_string( sig->pubkey_algo );
|
||||
log_info(_("Signature made %.*s using %s key ID %08lX\n"),
|
||||
(int)strlen(tstr)-1, tstr, astr? astr: "?", (ulong)sig->keyid[1] );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue