Skip to content
Snippets Groups Projects
Commit 89970f5b authored by Don Lipari's avatar Don Lipari
Browse files

Tiny typo fix.

parent 311e1b80
No related branches found
No related tags found
No related merge requests found
...@@ -210,7 +210,7 @@ _filter_job_records (void) ...@@ -210,7 +210,7 @@ _filter_job_records (void)
} }
if ((opt.qos != NULL) && if ((opt.qos != NULL) &&
(strcmp(job_ptr[i].qos,opt.qos) != 0)) { (strcmp(job_ptr[i].qos, opt.qos) != 0)) {
job_ptr[i].job_id = 0; job_ptr[i].job_id = 0;
continue; continue;
} }
...@@ -261,7 +261,7 @@ _filter_job_records (void) ...@@ -261,7 +261,7 @@ _filter_job_records (void)
if ((opt.wckey[0] != '*') && (job_key[0] == '*')) if ((opt.wckey[0] != '*') && (job_key[0] == '*'))
job_key++; job_key++;
if (strcmp(job_key, job_ptr[i].wckey) != 0) { if (strcmp(job_key, opt.wckey) != 0) {
job_ptr[i].job_id = 0; job_ptr[i].job_id = 0;
continue; continue;
} }
......
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