summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-crypt/cryptplug/files/cryptplug-0.3.16-64bit.dif')
-rw-r--r--app-crypt/cryptplug/files/cryptplug-0.3.16-64bit.dif20
1 files changed, 20 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;
+ }