Skip to content
Snippets Groups Projects
Commit 601fad81 authored by Danny Auble's avatar Danny Auble
Browse files

BLUEGENE - handle case when small is given as a conn_type argument.

parent d7a5b0da
No related branches found
No related tags found
No related merge requests found
......@@ -162,6 +162,8 @@ static uint16_t _get_conn_type(char *arg, bool bgp)
return SELECT_TORUS;
else if (!strncasecmp(arg, "NAV", len))
return SELECT_NAV;
else if (!strncasecmp(arg, "SMALL", len))
return SELECT_SMALL;
else if (bgp) {
if (!strncasecmp(arg, "HTC", len) ||
!strncasecmp(arg, "HTC_S", len))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment