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-authenticate.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-authenticate.c')
-rw-r--r-- | src/journal/journal-authenticate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/journal/journal-authenticate.c b/src/journal/journal-authenticate.c index b3e2601c4e..cdc80e2d26 100644 --- a/src/journal/journal-authenticate.c +++ b/src/journal/journal-authenticate.c @@ -106,7 +106,7 @@ static int journal_file_get_epoch(JournalFile *f, uint64_t realtime, uint64_t *e if (f->fss_start_usec == 0 || f->fss_interval_usec == 0) - return -ENOTSUP; + return -EOPNOTSUPP; if (realtime < f->fss_start_usec) return -ESTALE; @@ -446,7 +446,7 @@ int journal_file_hmac_setup(JournalFile *f) { e = gcry_md_open(&f->hmac, GCRY_MD_SHA256, GCRY_MD_FLAG_HMAC); if (e != 0) - return -ENOTSUP; + return -EOPNOTSUPP; return 0; } |