summaryrefslogtreecommitdiff
path: root/security/openvas-libnasl/patches
diff options
context:
space:
mode:
authoradrianp <adrianp>2009-01-04 01:08:52 +0000
committeradrianp <adrianp>2009-01-04 01:08:52 +0000
commit3cc1d45890bc18ebbf17856e0d0c9ab4fb5123fa (patch)
tree7d42cae0f578eab752bf6c050ad442a5f35cd64e /security/openvas-libnasl/patches
parent795973cd3eed0f26d3f02b68c996fa2fb866271b (diff)
downloadpkgsrc-3cc1d45890bc18ebbf17856e0d0c9ab4fb5123fa.tar.gz
OpenVAS stands for Open Vulnerability Assessment System and is a
network security scanner with associated tools like a graphical user front-end. The core component is a server with a set of network vulnerability tests (NVTs) to detect security problems in remote systems and applications.
Diffstat (limited to 'security/openvas-libnasl/patches')
-rw-r--r--security/openvas-libnasl/patches/patch-aa13
1 files changed, 13 insertions, 0 deletions
diff --git a/security/openvas-libnasl/patches/patch-aa b/security/openvas-libnasl/patches/patch-aa
new file mode 100644
index 00000000000..d316975ee0e
--- /dev/null
+++ b/security/openvas-libnasl/patches/patch-aa
@@ -0,0 +1,13 @@
+$NetBSD: patch-aa,v 1.1.1.1 2009/01/04 01:09:31 adrianp Exp $
+
+--- test/test_script_signing.sh.orig 2008-06-30 11:55:03.000000000 +0100
++++ test/test_script_signing.sh
+@@ -18,7 +18,7 @@ numfailed=0
+ check_script() {
+ echo -n "$1 "
+ result=$($NASL $1 2> $1.err.log)
+- if [ "x$result" == "x$2" ]; then
++ if [ "x$result" = "x$2" ]; then
+ numok=$((numok + 1))
+ echo OK
+ else