mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-04 03:49:02 +00:00
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:
parent
295685c5c1
commit
f7f99edf3f
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=315643
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user