diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-07-20 21:58:05 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-07-20 21:58:07 +0530 |
commit | f8bfd5e7dff88b911781a92e1ad87a7eba9342b9 (patch) | |
tree | 6f0b6a200763d2ec2fde60216ef27e2e3245bc2f /src/jobs.c | |
parent | cf02c0ac1b7d8ed930a03339f639f819b3ad127b (diff) |
evanix: --cache-status -> --check-cache-status
Diffstat (limited to 'src/jobs.c')
-rw-r--r-- | src/jobs.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -388,7 +388,7 @@ int job_read(FILE *stream, struct job **job) if (ret < 0) goto out_free; - if (evanix_opts.cache_status) { + if (evanix_opts.check_cache_status) { ret = job_read_cache(j); if (ret < 0) goto out_free; @@ -458,7 +458,7 @@ static int job_new(struct job **j, char *name, char *drv_path, char *attr, job->parents_filled = 0; job->parents = NULL; - if (evanix_opts.cache_status) { + if (evanix_opts.check_cache_status) { job->stale = true; } else { job->insubstituters = false; |