diff options
author | az <az@FreeBSD.org> | 2007-08-31 15:48:56 +0800 |
---|---|---|
committer | az <az@FreeBSD.org> | 2007-08-31 15:48:56 +0800 |
commit | e60a307fab8f9d2e024d2670ecf9c3070dc42cf1 (patch) | |
tree | 55c8abb7c6e33e517b4b41afc2ff53342e191f0c /net | |
parent | 09cb543f78e755f146e2f9dc3f02482c76fa3634 (diff) | |
download | freebsd-ports-graphics-e60a307fab8f9d2e024d2670ecf9c3070dc42cf1.tar.gz freebsd-ports-graphics-e60a307fab8f9d2e024d2670ecf9c3070dc42cf1.tar.zst freebsd-ports-graphics-e60a307fab8f9d2e024d2670ecf9c3070dc42cf1.zip |
- Fix patch in previous commit (broken -d option)
- bump portrevision
Reported by: Alexander Logvinov <ports@logvinov.com> via ports/115420 follow-up
Pointy hat: az
Diffstat (limited to 'net')
-rw-r--r-- | net/bounce/Makefile | 2 | ||||
-rw-r--r-- | net/bounce/files/patch-04 | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/net/bounce/Makefile b/net/bounce/Makefile index 45386ecf108..273684d4c78 100644 --- a/net/bounce/Makefile +++ b/net/bounce/Makefile @@ -8,7 +8,7 @@ PORTNAME= bounce PORTVERSION= 1.0 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= net security MASTER_SITES= http://www.iagora.com/~espel/ \ ${MASTER_SITE_LOCAL} diff --git a/net/bounce/files/patch-04 b/net/bounce/files/patch-04 index a2910794d14..395facc44ed 100644 --- a/net/bounce/files/patch-04 +++ b/net/bounce/files/patch-04 @@ -30,7 +30,7 @@ /* Process arguments */ - while( (ch = getopt(argc, argv, "p:a:b:d")) != -1 ) { -+ while( (ch = getopt(argc, argv, "p:a:b:d:t:")) != -1 ) { ++ while( (ch = getopt(argc, argv, "p:a:b:dt:")) != -1 ) { switch(ch) { case 'b': b = 1; case 'd': d = 1; break; |