1
0
mirror of https://github.com/systemd/systemd synced 2024-07-08 20:15:55 +00:00

cryptsetup-generator: continue parsing after error

Let's make the crypttab parser more robust and continue even if parsing
of a line failed.
This commit is contained in:
David Tardon 2024-05-30 10:46:13 +02:00 committed by Yu Watanabe
parent a07cb7d404
commit 83813bae7a

View File

@ -844,7 +844,7 @@ static int add_crypttab_device(const char *name, const char *device, const char
static int add_crypttab_devices(void) {
_cleanup_fclose_ FILE *f = NULL;
unsigned crypttab_line = 0;
int r;
int r, ret = 0;
if (!arg_read_crypttab)
return 0;
@ -877,12 +877,10 @@ static int add_crypttab_devices(void) {
continue;
}
r = add_crypttab_device(name, device, keyspec, options);
if (r < 0)
return r;
RET_GATHER(ret, add_crypttab_device(name, device, keyspec, options));
}
return 0;
return ret;
}
static int add_proc_cmdline_devices(void) {