aboutsummaryrefslogtreecommitdiff
path: root/src/jobs.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/jobs.c')
-rw-r--r--src/jobs.c18
1 files changed, 8 insertions, 10 deletions
diff --git a/src/jobs.c b/src/jobs.c
index 41fa3f3..fa2e267 100644
--- a/src/jobs.c
+++ b/src/jobs.c
@@ -508,16 +508,14 @@ int job_read(FILE *stream, struct job **job)
goto out_free;
}
- if (evanix_opts.system != NULL) {
- temp = cJSON_GetObjectItemCaseSensitive(root, "system");
- if (!cJSON_IsString(temp)) {
- ret = JOB_READ_JSON_INVAL;
- goto out_free;
- }
- if (strcmp(evanix_opts.system, temp->valuestring)) {
- ret = JOB_READ_SYS_MISMATCH;
- goto out_free;
- }
+ temp = cJSON_GetObjectItemCaseSensitive(root, "system");
+ if (!cJSON_IsString(temp)) {
+ ret = JOB_READ_JSON_INVAL;
+ goto out_free;
+ }
+ if (strcmp(evanix_opts.system, temp->valuestring)) {
+ ret = JOB_READ_SYS_MISMATCH;
+ goto out_free;
}
temp = cJSON_GetObjectItemCaseSensitive(root, "name");