diff options
author | minskim <minskim@pkgsrc.org> | 2007-01-03 03:26:31 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2007-01-03 03:26:31 +0000 |
commit | f4ef2de2b08c762d0abe161296b50bc47ec2c80e (patch) | |
tree | 58d5b5e0eb02a8404903d331978528c55cbad2ca /security/nfsbug | |
parent | cf15737f9a92b020057e22d24df0e8cfc438376d (diff) | |
download | pkgsrc-f4ef2de2b08c762d0abe161296b50bc47ec2c80e.tar.gz |
Correct the path to dinode.h on Darwin.
Diffstat (limited to 'security/nfsbug')
-rw-r--r-- | security/nfsbug/distinfo | 4 | ||||
-rw-r--r-- | security/nfsbug/patches/patch-ac | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/security/nfsbug/distinfo b/security/nfsbug/distinfo index 178c15293fb..990d7f092ae 100644 --- a/security/nfsbug/distinfo +++ b/security/nfsbug/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.6 2006/03/28 22:07:18 hubertf Exp $ +$NetBSD: distinfo,v 1.7 2007/01/03 03:26:31 minskim Exp $ SHA1 (nfsBugFerret.tgz) = 6b0b2d25fadd3156cf0f8851d72b6d6070dc528c RMD160 (nfsBugFerret.tgz) = e238e0a892bb8e46969278687ce6ec1944ae24c8 @@ -8,4 +8,4 @@ RMD160 (nfsShell.c) = 340454d35e6e67b87255cba7437186639f16cfa5 Size (nfsShell.c) = 47258 bytes SHA1 (patch-aa) = b28b48831632d2ffe8e103589c9fbf5b3e840d02 SHA1 (patch-ab) = 92908f57337c9fd2857720f14027f426809c669a -SHA1 (patch-ac) = 4a75568fc8bc5c2ea6059641d62188230387184a +SHA1 (patch-ac) = 8beb4759a385252700aabcee9f6cd0d585bf5274 diff --git a/security/nfsbug/patches/patch-ac b/security/nfsbug/patches/patch-ac index 95d00b597de..07d033520d6 100644 --- a/security/nfsbug/patches/patch-ac +++ b/security/nfsbug/patches/patch-ac @@ -1,6 +1,6 @@ -$NetBSD: patch-ac,v 1.5 2006/03/28 22:07:18 hubertf Exp $ +$NetBSD: patch-ac,v 1.6 2007/01/03 03:26:31 minskim Exp $ ---- nfsbug.c.orig 1995-02-17 06:57:27.000000000 +0100 +--- nfsbug.c.orig 1995-02-16 21:57:27.000000000 -0800 +++ nfsbug.c @@ -14,6 +14,7 @@ * - close sockets (?) @@ -24,7 +24,7 @@ $NetBSD: patch-ac,v 1.5 2006/03/28 22:07:18 hubertf Exp $ #include <sys/inode.h> #else #ifndef HPUX -+#ifdef __NetBSD__ ++#if defined(__NetBSD__) || defined(__APPLE__) +#include <ufs/ufs/dinode.h> +# if __NetBSD_Version__ >= 200040000 + /* at some point, fsid_t's "val" member was renamed to __fsid_val - HF */ |