diff options
author | Travis Tilley <lv@gentoo.org> | 2004-05-05 03:56:27 +0000 |
---|---|---|
committer | Travis Tilley <lv@gentoo.org> | 2004-05-05 03:56:27 +0000 |
commit | a2db7f9945b2266591041ed593ad82542dfc2e6a (patch) | |
tree | 9f6f64553c384315c779d692d1d624cb7d0a1a10 /app-crypt/cryptplug/files | |
parent | added patch for gcc 3.4 from Andrew Sayman via bug #49470 (Manifest recommit) (diff) | |
download | gentoo-2-a2db7f9945b2266591041ed593ad82542dfc2e6a.tar.gz gentoo-2-a2db7f9945b2266591041ed593ad82542dfc2e6a.tar.bz2 gentoo-2-a2db7f9945b2266591041ed593ad82542dfc2e6a.zip |
version bump with general 64bit fixes. i"m marking this stable on amd64 from the get-go
Diffstat (limited to 'app-crypt/cryptplug/files')
3 files changed, 31 insertions, 0 deletions
diff --git a/app-crypt/cryptplug/files/cryptplug-0.3.16-64bit.dif b/app-crypt/cryptplug/files/cryptplug-0.3.16-64bit.dif new file mode 100644 index 000000000000..74142babbc3e --- /dev/null +++ b/app-crypt/cryptplug/files/cryptplug-0.3.16-64bit.dif @@ -0,0 +1,20 @@ +--- gpgme/gpgmeplug.c ++++ gpgme/gpgmeplug.c 2003/02/21 15:56:32 +@@ -1776,7 +1776,7 @@ + GpgmeError err; + GpgmeCtx ctx; + GpgmeData pub; +- int len; ++ size_t len; + + err = gpgme_data_new (&pub); + fprintf( stderr, "1: gpgme returned %d\n", err ); +@@ -1803,7 +1803,7 @@ + + gpgme_release (ctx); + *generatedKey = gpgme_data_release_and_get_mem (pub, &len); +- *length = len; ++ *length = (int)len; + + return true; + } diff --git a/app-crypt/cryptplug/files/cryptplug-0.3.16-initialize-fix.diff b/app-crypt/cryptplug/files/cryptplug-0.3.16-initialize-fix.diff new file mode 100644 index 000000000000..fa9ee4c51342 --- /dev/null +++ b/app-crypt/cryptplug/files/cryptplug-0.3.16-initialize-fix.diff @@ -0,0 +1,10 @@ +--- gpgme/gpgmeplug.c ++++ gpgme/gpgmeplug.c +@@ -2125,6 +2125,7 @@ + fprintf( stderr, "startListCertificates( \"%s\", %d )\n", pattern, remote ); + + it = xmalloc( sizeof( struct CertIterator ) ); ++ memset( &(it->info), 0, sizeof( struct CertificateInfo ) ); + + err = gpgme_new (&(it->ctx)); + /*fprintf( stderr, "2: gpgme returned %d\n", err );*/ diff --git a/app-crypt/cryptplug/files/digest-cryptplug-0.3.16 b/app-crypt/cryptplug/files/digest-cryptplug-0.3.16 new file mode 100644 index 000000000000..60c6f5f19df3 --- /dev/null +++ b/app-crypt/cryptplug/files/digest-cryptplug-0.3.16 @@ -0,0 +1 @@ +MD5 c4f2bda9446dcca6c5ca31cd35bf2290 cryptplug-0.3.16.tar.gz 224964 |