diff options
author | joerg <joerg@pkgsrc.org> | 2005-12-08 17:36:56 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2005-12-08 17:36:56 +0000 |
commit | c072d4254aed931b330eda32edbdcdf1acbd0f97 (patch) | |
tree | 0c096f01bd14b4d73fe02dc4e86cae10e446167a /security | |
parent | d12049c0d1b6eb42b22ac745253c0df17fde0229 (diff) | |
download | pkgsrc-c072d4254aed931b330eda32edbdcdf1acbd0f97.tar.gz |
Fix errno.
Diffstat (limited to 'security')
-rw-r--r-- | security/pgp2/distinfo | 3 | ||||
-rw-r--r-- | security/pgp2/patches/patch-ag | 12 | ||||
-rw-r--r-- | security/rid/distinfo | 5 | ||||
-rw-r--r-- | security/rid/patches/patch-ab | 14 | ||||
-rw-r--r-- | security/rid/patches/patch-ac | 19 |
5 files changed, 47 insertions, 6 deletions
diff --git a/security/pgp2/distinfo b/security/pgp2/distinfo index 6d0d3207322..fa51678e3f9 100644 --- a/security/pgp2/distinfo +++ b/security/pgp2/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.4 2005/12/01 20:19:57 wiz Exp $ +$NetBSD: distinfo,v 1.5 2005/12/08 17:36:56 joerg Exp $ SHA1 (pgp263is.tar.gz) = 031e061ba1d62d7db35f1f854c489867e88f421d RMD160 (pgp263is.tar.gz) = b1cba2be918cecc8b9062272d43626c8876fa7f4 @@ -9,3 +9,4 @@ SHA1 (patch-ac) = 32e69f1335c3aa7b974dc7fa4100d1f9ebf358ec SHA1 (patch-ad) = 93f72f3e4f91f478429da8fda4671e171eb167ac SHA1 (patch-ae) = 307dddd61ef0ee3257a11822fc7bd423c5fd784f SHA1 (patch-af) = 33802b9f8d875293ea8e5e58a1e1eafd8cde7afe +SHA1 (patch-ag) = 377b17bc3783737c492708de57d6f4259e358a66 diff --git a/security/pgp2/patches/patch-ag b/security/pgp2/patches/patch-ag new file mode 100644 index 00000000000..40fb4cb05db --- /dev/null +++ b/security/pgp2/patches/patch-ag @@ -0,0 +1,12 @@ +$NetBSD: patch-ag,v 1.1 2005/12/08 17:36:56 joerg Exp $ + +--- fileio.c.orig 2005-12-08 17:33:01.000000000 +0000 ++++ fileio.c +@@ -37,7 +37,6 @@ + #ifdef _BSD + #include <sys/param.h> + #endif +-extern int errno; + #endif /* UNIX */ + #ifdef VMS + #include <file.h> diff --git a/security/rid/distinfo b/security/rid/distinfo index 12f04ef011f..f92d813a73b 100644 --- a/security/rid/distinfo +++ b/security/rid/distinfo @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.4 2005/02/24 13:10:12 agc Exp $ +$NetBSD: distinfo,v 1.5 2005/12/08 17:41:16 joerg Exp $ SHA1 (rid-1.11.tgz) = 14ccad3ae413a1bed19ad5f063f8e563b9ddbbfb RMD160 (rid-1.11.tgz) = c39ffa2dfc7245022c3db1523909893983a99517 Size (rid-1.11.tgz) = 122317 bytes SHA1 (patch-aa) = 8840f22028d1535c54a6dc84caeb1960cb93a5de -SHA1 (patch-ab) = 863908c0ec660d3976e977888b95061cac63fe41 +SHA1 (patch-ab) = e6cf3017ad2d390f2e58d5739b1819dbb5ad1ae8 +SHA1 (patch-ac) = d151390e6306102dd3e6d2121473d727b5953f43 diff --git a/security/rid/patches/patch-ab b/security/rid/patches/patch-ab index c8ea9c75bd0..9f3335f11c9 100644 --- a/security/rid/patches/patch-ab +++ b/security/rid/patches/patch-ab @@ -1,8 +1,16 @@ -$NetBSD: patch-ab,v 1.1 2004/06/27 12:21:21 grant Exp $ +$NetBSD: patch-ab,v 1.2 2005/12/08 17:41:16 joerg Exp $ ---- pinger.c.orig 2000-02-25 15:33:24.000000000 +1100 +--- pinger.c.orig 2000-02-25 04:33:24.000000000 +0000 +++ pinger.c -@@ -141,7 +141,7 @@ void process_alive(int num_hosts) +@@ -23,7 +23,6 @@ extern fd_set RawFD; + extern u_long NumToPing; + extern u_long TO; + extern pid_t PidSender; +-extern int errno; + + + /* +@@ -141,7 +140,7 @@ void process_alive(int num_hosts) } /* Standard checksum routine */ diff --git a/security/rid/patches/patch-ac b/security/rid/patches/patch-ac new file mode 100644 index 00000000000..38f42ab8cc5 --- /dev/null +++ b/security/rid/patches/patch-ac @@ -0,0 +1,19 @@ +$NetBSD: patch-ac,v 1.1 2005/12/08 17:41:16 joerg Exp $ + +--- grammer.y.orig 2005-12-08 17:37:54.000000000 +0000 ++++ grammer.y +@@ -1,4 +1,5 @@ + %{ ++#include <errno.h> + #include <stdio.h> + #include <strings.h> + #include "netconfig.h" +@@ -20,8 +21,6 @@ char *data; + + /* Name of current ddos we're working on */ + char ddos_name[BUFSIZE]; +- +-extern int errno; + %} + + %union { |