From 2570a1565180b9da6bac7cb2ee2d4efd95d3f050 Mon Sep 17 00:00:00 2001 From: George Bosilca Date: Tue, 7 Jul 2009 17:27:47 +0000 Subject: [PATCH] Add a TODO bullet for later processing ... This commit was SVN r21611. --- opal/util/net.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/opal/util/net.c b/opal/util/net.c index 5297bf9dbf..46438c6157 100644 --- a/opal/util/net.c +++ b/opal/util/net.c @@ -148,6 +148,9 @@ opal_net_init() 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. + */ opal_output( 0, "Malformed IP address or netmask. The correct format " "is a list of [0-255].[0-255].[0-255].[0-255]/[0-32] separated by ; " ); continue;