Fix a regression which prevented an IPv6 address in a -b option from

working.

PR:	217939
Differential Revision:	https://reviews.freebsd.org/D10064
This commit is contained in:
Hiroki Sato 2017-03-20 17:46:33 +00:00
parent 295685c5c1
commit f7f99edf3f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=315643

View File

@ -477,7 +477,15 @@ main(int argc, char *argv[])
break;
case 'b':
bflag = 1;
if ((p = strchr(optarg, ':')) == NULL) {
p = strchr(optarg, ']');
if (p != NULL)
p = strchr(p + 1, ':');
else {
p = strchr(optarg, ':');
if (p != NULL && strchr(p + 1, ':') != NULL)
p = NULL; /* backward compatibility */
}
if (p == NULL) {
/* A hostname or filename only. */
addpeer(&(struct peer){
.pe_name = optarg,