1
1

Add a TODO bullet for later processing ...

This commit was SVN r21611.
Этот коммит содержится в:
George Bosilca 2009-07-07 17:27:47 +00:00
родитель 4038834dfb
Коммит 2570a15651

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

@ -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;