Skip to content
Snippets Groups Projects
Commit b18d826a authored by Moe Jette's avatar Moe Jette
Browse files

correction for scontrol update a job's rotate field

parent 443e3f21
No related branches found
No related tags found
No related merge requests found
......@@ -724,11 +724,10 @@ scontrol_update_job (int argc, char *argv[])
}
else if (strncasecmp(tag, "Rotate", MAX(taglen, 2)) == 0) {
uint16_t rotate;
if (strncasecmp(val, "YES", MAX(vallen, 1)) == 0)
rotate = 1;
job_msg.rotate = 1;
else if (strncasecmp(val, "NO", MAX(vallen, 1)) == 0)
rotate = 0;
job_msg.rotate = 0;
else if (parse_uint16(val, &job_msg.rotate)) {
error ("Invalid wait-for-switch value: %s", val);
exit_code = 1;
......
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