aboutsummaryrefslogtreecommitdiff
path: root/src/jobs.c
diff options
context:
space:
mode:
authorsinanmohd <sinan@sinanmohd.com>2024-07-20 21:58:05 +0530
committersinanmohd <sinan@sinanmohd.com>2024-07-20 21:58:07 +0530
commitf8bfd5e7dff88b911781a92e1ad87a7eba9342b9 (patch)
tree6f0b6a200763d2ec2fde60216ef27e2e3245bc2f /src/jobs.c
parentcf02c0ac1b7d8ed930a03339f639f819b3ad127b (diff)
evanix: --cache-status -> --check-cache-status
Diffstat (limited to 'src/jobs.c')
-rw-r--r--src/jobs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jobs.c b/src/jobs.c
index 9d50950..909ef1b 100644
--- a/src/jobs.c
+++ b/src/jobs.c
@@ -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;