1
1

We're supposed to read a string and not an int ...

This commit was SVN r20421.
Этот коммит содержится в:
George Bosilca 2009-02-04 15:51:31 +00:00
родитель 745cec03e2
Коммит c359762c2d

Просмотреть файл

@ -338,11 +338,11 @@ int mca_oob_tcp_component_open(void)
0, 0,
&mca_oob_tcp_component.disable_family); &mca_oob_tcp_component.disable_family);
#if OPAL_WANT_IPV6 #if OPAL_WANT_IPV6
mca_base_param_reg_int(&mca_oob_tcp_component.super.oob_base, mca_base_param_reg_string(&mca_oob_tcp_component.super.oob_base,
"static_ports_v6", "Static ports for daemons and procs (IPv6)", "static_ports_v6", "Static ports for daemons and procs (IPv6)",
false, false, false, false,
NULL, NULL,
&str); &str);
if (NULL != str) { if (NULL != str) {
orte_static_ports = true; orte_static_ports = true;
orte_util_parse_range_options(str, &mca_oob_tcp_component.tcp6_static_ports); orte_util_parse_range_options(str, &mca_oob_tcp_component.tcp6_static_ports);