summaryrefslogtreecommitdiff
path: root/pr/tests/provider.c
diff options
context:
space:
mode:
Diffstat (limited to 'pr/tests/provider.c')
-rw-r--r--pr/tests/provider.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/pr/tests/provider.c b/pr/tests/provider.c
index b2a05283..bec8950a 100644
--- a/pr/tests/provider.c
+++ b/pr/tests/provider.c
@@ -1049,9 +1049,7 @@ static void Help(void)
PR_fprintf(debug_out, "\t-G use GLOBAL threads (LOCAL)\n");
PR_fprintf(debug_out, "\t-T <string> thread provider ('n' | 'p' | 'w')(n)\n");
PR_fprintf(debug_out, "\t-X use XTP as transport (TCP)\n");
-#ifdef _PR_INET6
PR_fprintf(debug_out, "\t-6 Use IPv6 (IPv4)\n");
-#endif /* _PR_INET6 */
PR_fprintf(debug_out, "\t-v verbosity (accumulative) (0)\n");
PR_fprintf(debug_out, "\t-p pthread statistics (FALSE)\n");
PR_fprintf(debug_out, "\t-d debug mode (FALSE)\n");
@@ -1120,12 +1118,9 @@ PRIntn main(PRIntn argc, char** argv)
case 'X': /* use XTP as transport */
protocol = 36;
break;
-#ifdef _PR_INET6
- case '6': /* Use IPv6 */
- domain = AF_INET6;
- PR_SetIPv6Enable(PR_TRUE);
+ case '6': /* Use IPv6 */
+ domain = PR_AF_INET6;
break;
-#endif /* _PR_INET6 */
case 'a': /* the value for accepting */
accepting = atoi(opt->value);
break;