From 4557e15c18cc14441748f7faf5de3db4fa0e8413 Mon Sep 17 00:00:00 2001 From: Nathan Hjelm Date: Tue, 31 Jul 2012 21:50:34 +0000 Subject: [PATCH] oob/ud fix compile error This commit was SVN r26933. --- orte/mca/oob/ud/oob_ud_module.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/orte/mca/oob/ud/oob_ud_module.c b/orte/mca/oob/ud/oob_ud_module.c index 44d7e2fc96..76724a2bdb 100644 --- a/orte/mca/oob/ud/oob_ud_module.c +++ b/orte/mca/oob/ud/oob_ud_module.c @@ -354,6 +354,10 @@ int mca_oob_ud_module_init (void) /* NTH: only supports one port for now */ found_one = true; + + /* NTH: since we only support one port start monitoring now */ + mca_oob_ud_event_start_monitor (device); + break; } } @@ -362,8 +366,6 @@ int mca_oob_ud_module_init (void) return ORTE_ERR_NOT_FOUND; } - mca_oob_ud_event_start_monitor (device); - return ORTE_SUCCESS; }