diff options
author | David Herrmann <dh.herrmann@gmail.com> | 2015-03-13 14:08:00 +0100 |
---|---|---|
committer | David Herrmann <dh.herrmann@gmail.com> | 2015-03-13 14:10:39 +0100 |
commit | 15411c0cb1192799b37ec8f25d6f30e8d7292fc6 (patch) | |
tree | 003adfa8f694890078b5fb6d901e420c9a966ece /src/journal/journal-verify.c | |
parent | 32a568fb90bf0a22a3007fa670305403a5d0bb72 (diff) |
tree-wide: there is no ENOTSUP on linux
Replace ENOTSUP by EOPNOTSUPP as this is what linux actually uses.
Diffstat (limited to 'src/journal/journal-verify.c')
-rw-r--r-- | src/journal/journal-verify.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/journal/journal-verify.c b/src/journal/journal-verify.c index 35c270cb34..146c10b4d4 100644 --- a/src/journal/journal-verify.c +++ b/src/journal/journal-verify.c @@ -817,7 +817,7 @@ int journal_file_verify( return r; } #else - return -ENOTSUP; + return -EOPNOTSUPP; #endif } else if (f->seal) return -ENOKEY; @@ -845,7 +845,7 @@ int journal_file_verify( if (le32toh(f->header->compatible_flags) & ~HEADER_COMPATIBLE_SUPPORTED) { log_error("Cannot verify file with unknown extensions."); - r = -ENOTSUP; + r = -EOPNOTSUPP; goto fail; } |