Node Manager Feature, correct 1268194 missing break.

This commit is contained in:
Pat Donlin 2015-02-06 07:40:19 -06:00 committed by Zdenek Styblik
parent f1c6118c72
commit ce861658c0

View File

@ -2976,6 +2976,7 @@ ipmi_nm_set_range(struct ipmi_intf * intf, int argc, char **argv)
lprintf(LOG_ERR,"Power minimum must be a positive integer.\n"); lprintf(LOG_ERR,"Power minimum must be a positive integer.\n");
return -1; return -1;
} }
break;
case 0x03: /* max */ case 0x03: /* max */
if (str2ushort(argv[1], &maximum) < 0) { if (str2ushort(argv[1], &maximum) < 0) {
lprintf(LOG_ERR,"Power maximum must be a positive integer.\n"); lprintf(LOG_ERR,"Power maximum must be a positive integer.\n");