diff options
author | rtr <rtr@pkgsrc.org> | 2003-11-13 03:53:40 +0000 |
---|---|---|
committer | rtr <rtr@pkgsrc.org> | 2003-11-13 03:53:40 +0000 |
commit | 402781aa91a8f274353d8f23eabe517db7fca9af (patch) | |
tree | 69f00aef4077ad93d16b94d5da5508b927ff9423 /devel/its4 | |
parent | 111437c3ecf78f6a79e4ba6e24eb8247d35a4640 (diff) | |
download | pkgsrc-402781aa91a8f274353d8f23eabe517db7fca9af.tar.gz |
patch-aa: Patch removes re-declaration of default param val.
Should resolve pr pkg/23421.
Diffstat (limited to 'devel/its4')
-rw-r--r-- | devel/its4/distinfo | 3 | ||||
-rw-r--r-- | devel/its4/patches/patch-aa | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/devel/its4/distinfo b/devel/its4/distinfo index 3e43f970c88..df7db6c14f5 100644 --- a/devel/its4/distinfo +++ b/devel/its4/distinfo @@ -1,4 +1,5 @@ -$NetBSD: distinfo,v 1.2 2001/04/21 00:44:24 wiz Exp $ +$NetBSD: distinfo,v 1.3 2003/11/13 03:53:40 rtr Exp $ SHA1 (its4-1.1.1.tgz) = e4f53d50b3e58bda892088b15454493c3f07624b Size (its4-1.1.1.tgz) = 59870 bytes +SHA1 (patch-aa) = be67edcb8ca7859d9e2571b4e228bef5140e84cd diff --git a/devel/its4/patches/patch-aa b/devel/its4/patches/patch-aa new file mode 100644 index 00000000000..701fbb94780 --- /dev/null +++ b/devel/its4/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1 2003/11/13 03:53:40 rtr Exp $ + +--- resultsdb.C.orig 2000-10-06 01:56:59.000000000 +1100 ++++ resultsdb.C +@@ -43,7 +43,7 @@ void ResizeResultsTable() + delete[] old_table; + } + +-void AddResult(char *source, int l, Severity s, VulnInfo*v, int explanation=0) ++void AddResult(char *source, int l, Severity s, VulnInfo*v, int explanation) + { + Result &r = table[num_entries++]; + r.source = source; |