From 0acec2b67673d7a725e9ef7930b0e360c825f99d Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Sat, 6 Jun 2015 10:12:19 -0700 Subject: [PATCH] opal/util/net.c: remove stale comment Also wrap a long "if" statement -- but make no code logic changes. --- opal/util/net.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/opal/util/net.c b/opal/util/net.c index fdcd28fa14..a57c211273 100644 --- a/opal/util/net.c +++ b/opal/util/net.c @@ -161,10 +161,8 @@ opal_net_init(void) sscanf( arg, "%u.%u.%u.%u/%u", &a, &b, &c, &d, &bits ); - if( (a > 255) || (b > 255) || (c > 255) || (d > 255) || (bits > 32) ) { - /* TODO: A reminder to change this to OPAL SOS once this framework - * get added to the trunk. - */ + if( (a > 255) || (b > 255) || (c > 255) || + (d > 255) || (bits > 32) ) { if (0 == found_bad) { opal_show_help("help-opal-util.txt", "malformed net_private_ipv4",