diff options
author | Niels Heinen <niels@FreeBSD.org> | 2010-03-13 19:46:16 +0000 |
---|---|---|
committer | Niels Heinen <niels@FreeBSD.org> | 2010-03-13 19:46:16 +0000 |
commit | 9c14d6c21c2bc37fd246980b8efd50e8355456c4 (patch) | |
tree | 01db829e2b927518c19b5c38e47ab7e135311160 /security/strobe | |
parent | da9f1f5eb784b7f47a3661e39a479b2db06a5938 (diff) |
Notes
Diffstat (limited to 'security/strobe')
-rw-r--r-- | security/strobe/Makefile | 3 | ||||
-rw-r--r-- | security/strobe/files/patch-ab | 11 |
2 files changed, 13 insertions, 1 deletions
diff --git a/security/strobe/Makefile b/security/strobe/Makefile index 4ca596179587..04dc369233e9 100644 --- a/security/strobe/Makefile +++ b/security/strobe/Makefile @@ -7,12 +7,13 @@ PORTNAME= strobe PORTVERSION= 1.06 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= http://ftp.ussg.iu.edu/security/tools/unix/scanners/strobe/ \ http://ftp.cerias.purdue.edu/pub/tools/unix/scanners/strobe/ \ http://ftp.surfnet.nl/security/coast/scanners/strobe/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= niels@FreeBSD.org COMMENT= Fast scatter/gather TCP port scanner WRKSRC= ${WRKDIR}/strobe diff --git a/security/strobe/files/patch-ab b/security/strobe/files/patch-ab new file mode 100644 index 000000000000..d837bb999738 --- /dev/null +++ b/security/strobe/files/patch-ab @@ -0,0 +1,11 @@ +--- strobe.orig 2010-03-13 19:26:31.000000000 +0100 ++++ strobe.c 2010-03-13 19:27:06.000000000 +0100 +@@ -1297,7 +1297,7 @@ + exit (1); + } + port_descs=(struct port_desc_s **) Smalloc(sizeof(struct port_descs_s *) * 65536); +- memset(port_descs, 0, 65536); ++ memset(port_descs, 0, sizeof(struct port_descs_s *) * 65536); + while (fgets (lbuf, sizeof (lbuf), fh)) + { + char *p; |