diff options
Diffstat (limited to 'src/journal/journalctl.c')
-rw-r--r-- | src/journal/journalctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/journal/journalctl.c b/src/journal/journalctl.c index 4d45f5a691..7fbd518d3f 100644 --- a/src/journal/journalctl.c +++ b/src/journal/journalctl.c @@ -576,7 +576,7 @@ static int parse_argv(int argc, char *argv[]) { case ARG_INTERVAL: case ARG_FORCE: log_error("Forward-secure sealing not available."); - return -ENOTSUP; + return -EOPNOTSUPP; #endif case 'p': { @@ -1472,7 +1472,7 @@ finish: return r; #else log_error("Forward-secure sealing not available."); - return -ENOTSUP; + return -EOPNOTSUPP; #endif } |