1
0
mirror of git://git.gnupg.org/gnupg.git synced 2025-01-08 12:44:23 +01:00

Fixed some types for portability. Noted by Stefan Bellon.

This commit is contained in:
David Shaw 2001-12-12 19:31:13 +00:00
parent 27949781ec
commit ed32beee67
2 changed files with 7 additions and 2 deletions

View File

@ -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>
* g10.c, options.h: New option --pgp2. This is identical to

View File

@ -67,7 +67,7 @@ void
show_policy_url(PKT_signature *sig)
{
const byte *p;
int len;
size_t len;
p=parse_sig_subpkt(sig->hashed,SIGSUBPKT_POLICY,&len);
if(p)
@ -83,7 +83,8 @@ void
show_notation(PKT_signature *sig)
{
const byte *p;
int len,seq=0;
size_t len;
int seq=0;
/* There may be multiple notations in the same sig. */