From de1dd1c2b0355b300f0f145c6188e37bd1edff8f Mon Sep 17 00:00:00 2001 From: Howard Pritchard Date: Wed, 13 Feb 2019 12:52:11 -0700 Subject: [PATCH] oob/tcp: hardwire oob_tcp version string to 4.0.0 Signed-off-by: Howard Pritchard --- orte/mca/oob/tcp/oob_tcp_connection.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/orte/mca/oob/tcp/oob_tcp_connection.c b/orte/mca/oob/tcp/oob_tcp_connection.c index 9e387b1b0d..402d41c16a 100644 --- a/orte/mca/oob/tcp/oob_tcp_connection.c +++ b/orte/mca/oob/tcp/oob_tcp_connection.c @@ -86,7 +86,10 @@ #define OOB_TCP_STR_EXPAND(tok) #tok #define OOB_TCP_STR(tok) OOB_TCP_STR_EXPAND(tok) -static char * oob_tcp_version_string = OOB_TCP_STR(ORTE_MAJOR_VERSION) "." OOB_TCP_STR(ORTE_MINOR_VERSION) ".0"; +/* + * See discussion at https://github.com/open-mpi/ompi/pull/6157 + */ +static char * oob_tcp_version_string = "4.0.0"; static void tcp_peer_event_init(mca_oob_tcp_peer_t* peer); static int tcp_peer_send_connect_ack(mca_oob_tcp_peer_t* peer);