MFC: r285543

Add a missing break statement, which made the code default to IPv6.

PR:		201285
Submitted by:	David Binderman
Approved by:	re (gjb)
This commit is contained in:
brueffer 2015-07-22 15:39:41 +00:00
parent 141df3ac09
commit 2de7e645f9

View File

@ -448,6 +448,7 @@ main(int argc, char **argv)
switch (c) {
case '4':
hints.ai_family = PF_INET;
break;
case '6':
hints.ai_family = PF_INET6;
break;