From 15411c0cb1192799b37ec8f25d6f30e8d7292fc6 Mon Sep 17 00:00:00 2001 From: David Herrmann Date: Fri, 13 Mar 2015 14:08:00 +0100 Subject: tree-wide: there is no ENOTSUP on linux Replace ENOTSUP by EOPNOTSUPP as this is what linux actually uses. --- src/import/import-compress.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/import/import-compress.c') diff --git a/src/import/import-compress.c b/src/import/import-compress.c index fa3f162bf6..d6b8133036 100644 --- a/src/import/import-compress.c +++ b/src/import/import-compress.c @@ -234,7 +234,7 @@ int import_compress_init(ImportCompress *c, ImportCompressType t) { break; default: - return -ENOTSUP; + return -EOPNOTSUPP; } c->encoding = true; @@ -365,7 +365,7 @@ int import_compress(ImportCompress *c, const void *data, size_t size, void **buf break; default: - return -ENOTSUP; + return -EOPNOTSUPP; } return 0; @@ -453,7 +453,7 @@ int import_compress_finish(ImportCompress *c, void **buffer, size_t *buffer_size break; default: - return -ENOTSUP; + return -EOPNOTSUPP; } return 0; -- cgit v1.2.3-54-g00ecf