pkgsrc/security/openvas-libnasl/patches/patch-aa
adrianp be52ce7665 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.
2009-01-04 01:08:52 +00:00

13 lines
391 B
Text

$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