summaryrefslogtreecommitdiff
path: root/security/gnupg/patches/patch-aa
diff options
context:
space:
mode:
Diffstat (limited to 'security/gnupg/patches/patch-aa')
-rw-r--r--security/gnupg/patches/patch-aa14
1 files changed, 7 insertions, 7 deletions
diff --git a/security/gnupg/patches/patch-aa b/security/gnupg/patches/patch-aa
index f29358a3469..45bd3fce2e0 100644
--- a/security/gnupg/patches/patch-aa
+++ b/security/gnupg/patches/patch-aa
@@ -1,16 +1,16 @@
-$NetBSD: patch-aa,v 1.8 2002/10/27 02:53:03 chris Exp $
+$NetBSD: patch-aa,v 1.9 2003/08/25 21:25:25 itojun Exp $
---- idea-stub.c.orig Sun Oct 27 02:21:54 2002
-+++ cipher/idea-stub.c Sun Oct 27 02:22:54 2002
+--- cipher/idea-stub.c.orig 2003-07-31 00:15:51.000000000 +0900
++++ cipher/idea-stub.c 2003-08-26 06:19:38.000000000 +0900
@@ -131,9 +131,9 @@
}
sym = dlsym (handle, "idea_get_info");
- if (dlerror ())
-+ if ((sym == NULL) && (dlerror ()))
++ if ((sym == NULL) && dlerror ())
sym = dlsym (handle, "_idea_get_info");
- if ((err=dlerror()))
+ if ((sym == NULL) && (err=dlerror()))
- {
- log_info ("invalid module `%s': %s\n", name, err);
- goto failure;
+ goto failure;
+
+ return sym;