mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-04 12:21:31 +01:00
Removed deprecated SIGEXPIRED status line.
This commit is contained in:
parent
9f38f3918a
commit
cd9614b81b
13
doc/DETAILS
13
doc/DETAILS
@ -328,7 +328,7 @@ more arguments in future versions.
|
|||||||
|
|
||||||
UNEXPECTED <what>
|
UNEXPECTED <what>
|
||||||
Unexpected data has been encountered
|
Unexpected data has been encountered
|
||||||
0 - not further specified 1
|
0 - not further specified
|
||||||
|
|
||||||
|
|
||||||
TRUST_UNDEFINED <error token>
|
TRUST_UNDEFINED <error token>
|
||||||
@ -357,9 +357,6 @@ more arguments in future versions.
|
|||||||
status codes is emitted in addition to a TRUST_* status.
|
status codes is emitted in addition to a TRUST_* status.
|
||||||
Without PKA info available or
|
Without PKA info available or
|
||||||
|
|
||||||
SIGEXPIRED
|
|
||||||
This is deprecated in favor of KEYEXPIRED.
|
|
||||||
|
|
||||||
KEYEXPIRED <expire-timestamp>
|
KEYEXPIRED <expire-timestamp>
|
||||||
The key has expired. expire-timestamp is the expiration time
|
The key has expired. expire-timestamp is the expiration time
|
||||||
in seconds since Epoch. This status line is not very useful
|
in seconds since Epoch. This status line is not very useful
|
||||||
@ -701,6 +698,14 @@ more arguments in future versions.
|
|||||||
by g13.
|
by g13.
|
||||||
|
|
||||||
|
|
||||||
|
Status lines which are not anymore used:
|
||||||
|
|
||||||
|
SIGEXPIRED removed on 2011-02-04.
|
||||||
|
This is deprecated in favor of KEYEXPIRED.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Format of the "--attribute-fd" output
|
Format of the "--attribute-fd" output
|
||||||
=====================================
|
=====================================
|
||||||
|
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2011-02-04 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
|
* sig-check.c (do_check_messages): Remove the long deprecated
|
||||||
|
SIGEXPIRED status line.
|
||||||
|
|
||||||
2011-02-03 Werner Koch <wk@g10code.com>
|
2011-02-03 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
* export.c (transfer_format_to_openpgp) [!HAVE_GCRY_PK_GET_CURVE]:
|
* export.c (transfer_format_to_openpgp) [!HAVE_GCRY_PK_GET_CURVE]:
|
||||||
|
@ -238,10 +238,8 @@ do_check_messages( PKT_public_key *pk, PKT_signature *sig,
|
|||||||
if (opt.verbose)
|
if (opt.verbose)
|
||||||
log_info(_("NOTE: signature key %s expired %s\n"),
|
log_info(_("NOTE: signature key %s expired %s\n"),
|
||||||
keystr_from_pk(pk), asctimestamp( pk->expiredate ) );
|
keystr_from_pk(pk), asctimestamp( pk->expiredate ) );
|
||||||
/* SIGEXPIRED is deprecated. Use KEYEXPIRED. */
|
|
||||||
sprintf(buf,"%lu",(ulong)pk->expiredate);
|
sprintf(buf,"%lu",(ulong)pk->expiredate);
|
||||||
write_status_text(STATUS_KEYEXPIRED,buf);
|
write_status_text(STATUS_KEYEXPIRED,buf);
|
||||||
write_status(STATUS_SIGEXPIRED);
|
|
||||||
if(r_expired)
|
if(r_expired)
|
||||||
*r_expired = 1;
|
*r_expired = 1;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user