1
0
mirror of https://github.com/systemd/systemd synced 2026-03-28 17:54:51 +01:00

Compare commits

..

No commits in common. "4ae16cf9b7596e7bd70d4ccf58809a3299e903a9" and "929ce35f8d24db3f2e951c2e68cd23856010600d" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -1621,7 +1621,7 @@ static int parse_argv(int argc, char *argv[], Context *c) {
case ARG_JSON:
r = parse_json_argument(optarg, &arg_json_format_flags);
if (r <= 0)
if (r < 0)
return r;
break;

View File

@ -298,7 +298,7 @@ int dlopen_cryptsetup(void) {
return 1;
#else
return log_debug_errno(SYNTHETIC_ERRNO(EOPNOTSUPP), "cryptsetup support is not compiled in.");
return log_error_errno(SYNTHETIC_ERRNO(EOPNOTSUPP), "cryptsetup support is not compiled in.");
#endif
}