summaryrefslogtreecommitdiff
path: root/security/pakemon
diff options
context:
space:
mode:
authorobache <obache>2007-12-28 11:45:42 +0000
committerobache <obache>2007-12-28 11:45:42 +0000
commitae92879eea8fa4491b2963a2930df6fd4ceb42f0 (patch)
tree0b91c9875b1233a91ca6daa967c150cef0504a12 /security/pakemon
parent24710e5caffe7e8dd9142f485f09e1bd5772434f (diff)
downloadpkgsrc-ae92879eea8fa4491b2963a2930df6fd4ceb42f0.tar.gz
Fixes invalid lvalue in assignment.
Diffstat (limited to 'security/pakemon')
-rw-r--r--security/pakemon/distinfo3
-rw-r--r--security/pakemon/patches/patch-ad13
2 files changed, 15 insertions, 1 deletions
diff --git a/security/pakemon/distinfo b/security/pakemon/distinfo
index b66771841db..9227e30b61a 100644
--- a/security/pakemon/distinfo
+++ b/security/pakemon/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.5 2007/02/18 18:56:47 adrianp Exp $
+$NetBSD: distinfo,v 1.6 2007/12/28 11:45:42 obache Exp $
SHA1 (pakemon-0.3.1.tar.gz) = 27708ac303a58432222b53b71b6ca13e71502f7e
RMD160 (pakemon-0.3.1.tar.gz) = 156c1829630e2e59a5797882d6309cc423217fee
@@ -6,3 +6,4 @@ Size (pakemon-0.3.1.tar.gz) = 110065 bytes
SHA1 (patch-aa) = 22155e703130a28ba4bf34922b3926411cb917b8
SHA1 (patch-ab) = d35a76ae3ef96d51526f20d9973d1743c038cf81
SHA1 (patch-ac) = 98766fc5c20fba4c7750b9744bfa59fbf9ad22d2
+SHA1 (patch-ad) = ca46599653454fa6173ece01577ea9c9c5785c27
diff --git a/security/pakemon/patches/patch-ad b/security/pakemon/patches/patch-ad
new file mode 100644
index 00000000000..59ee56f3fdb
--- /dev/null
+++ b/security/pakemon/patches/patch-ad
@@ -0,0 +1,13 @@
+$NetBSD: patch-ad,v 1.1 2007/12/28 11:45:42 obache Exp $
+
+--- signature.c.orig 2001-01-07 05:24:17.000000000 +0000
++++ signature.c
+@@ -135,7 +135,7 @@ c_node *new_c_node(s_node *service, u_i
+
+ new_node->delta2 = (u_char *)NULL;
+
+- if( (const char *)re_err = re_compile_pattern( pattern, strlen( pattern ),&(new_node->reg_pattern))){
++ if( re_err = (char *)re_compile_pattern( pattern, strlen( pattern ),&(new_node->reg_pattern))){
+ fprintf( stderr, "new_c_node:re_compile_pattern %s\n", re_err );
+ final(0);
+ }