Given we only need a single field off the ExecLoadCredential structure
we don't have to link it as a whole, but just copy that one bit over
directly, simplifying the struct a bit.
Set *seen_creds;
const ExecContext *context;
const ExecParameters *params;
- ExecLoadCredential *parent_load_credential;
+ bool encrypted;
const char *unit;
int dfd;
uid_t uid;
args->params,
sub_id,
de->d_name,
- args->parent_load_credential->encrypted,
+ args->encrypted,
args->unit,
dir_fd,
args->dfd,
.seen_creds = seen_creds,
.context = context,
.params = params,
- .parent_load_credential = lc,
+ .encrypted = lc->encrypted,
.unit = unit,
.dfd = dfd,
.uid = uid,