mirror of
git://git.gnupg.org/gnupg.git
synced 2025-04-13 22:21:09 +02:00
Fixed some types for portability. Noted by Stefan Bellon.
This commit is contained in:
parent
27949781ec
commit
ed32beee67
@ -1,3 +1,7 @@
|
|||||||
|
2001-12-12 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
|
* Fixed some types for portability. Noted by Stefan Bellon.
|
||||||
|
|
||||||
2001-12-07 David Shaw <dshaw@jabberwocky.com>
|
2001-12-07 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
* g10.c, options.h: New option --pgp2. This is identical to
|
* g10.c, options.h: New option --pgp2. This is identical to
|
||||||
|
@ -67,7 +67,7 @@ void
|
|||||||
show_policy_url(PKT_signature *sig)
|
show_policy_url(PKT_signature *sig)
|
||||||
{
|
{
|
||||||
const byte *p;
|
const byte *p;
|
||||||
int len;
|
size_t len;
|
||||||
|
|
||||||
p=parse_sig_subpkt(sig->hashed,SIGSUBPKT_POLICY,&len);
|
p=parse_sig_subpkt(sig->hashed,SIGSUBPKT_POLICY,&len);
|
||||||
if(p)
|
if(p)
|
||||||
@ -83,7 +83,8 @@ void
|
|||||||
show_notation(PKT_signature *sig)
|
show_notation(PKT_signature *sig)
|
||||||
{
|
{
|
||||||
const byte *p;
|
const byte *p;
|
||||||
int len,seq=0;
|
size_t len;
|
||||||
|
int seq=0;
|
||||||
|
|
||||||
/* There may be multiple notations in the same sig. */
|
/* There may be multiple notations in the same sig. */
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user