1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-20 00:21:35 +00:00

- 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
This commit is contained in:
Andrej Zverev 2007-08-31 07:48:56 +00:00
parent 800cdd2a61
commit e83b6d896c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=198575
2 changed files with 2 additions and 2 deletions

View File

@ -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}

View File

@ -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;