diff options
author | ahze <ahze@FreeBSD.org> | 2005-02-21 10:39:25 +0000 |
---|---|---|
committer | ahze <ahze@FreeBSD.org> | 2005-02-21 10:39:25 +0000 |
commit | 96be9b509958454cf4da2c2eecf9a70d4558ec4a (patch) | |
tree | 0228c2e4ceb6554a26eb9342a6de400955d44aff /www/gatling | |
parent | 833056207edd67b363c04339d6d121b4df808428 (diff) | |
download | FreeBSD-ports-96be9b509958454cf4da2c2eecf9a70d4558ec4a.zip FreeBSD-ports-96be9b509958454cf4da2c2eecf9a70d4558ec4a.tar.gz |
- Fix '-h' option in gatling
- Bump PORTREVISION
PR: ports/77783
Submitted by: Thomas-Martin Seck (maintainer)
Obtained from: gatling CVS
Diffstat (limited to 'www/gatling')
-rw-r--r-- | www/gatling/Makefile | 1 | ||||
-rw-r--r-- | www/gatling/files/patch-gatling.c | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/www/gatling/Makefile b/www/gatling/Makefile index ecce272..e848d40 100644 --- a/www/gatling/Makefile +++ b/www/gatling/Makefile @@ -7,6 +7,7 @@ PORTNAME= gatling PORTVERSION= 0.6 +PORTREVISION= 1 CATEGORIES= www benchmarks ftp ipv6 MASTER_SITES= http://dl.fefe.de/ diff --git a/www/gatling/files/patch-gatling.c b/www/gatling/files/patch-gatling.c new file mode 100644 index 0000000..394658b --- /dev/null +++ b/www/gatling/files/patch-gatling.c @@ -0,0 +1,11 @@ +--- gatling.c.orig Mon Jan 31 17:14:45 2005 ++++ gatling.c Sun Feb 20 17:02:12 2005 +@@ -3088,7 +3088,7 @@ void forkslave(int fd,buffer* in) { + } + } + error: +- write(fd,&code,4); ++ if (write(fd,&code,4)!=4) exit(0); + code=strlen(msg); + write(fd,&code,4); + { |