summaryrefslogtreecommitdiff
path: root/src/import/import-compress.c
diff options
context:
space:
mode:
authorDavid Herrmann <dh.herrmann@gmail.com>2015-03-13 14:08:00 +0100
committerDavid Herrmann <dh.herrmann@gmail.com>2015-03-13 14:10:39 +0100
commit15411c0cb1192799b37ec8f25d6f30e8d7292fc6 (patch)
tree003adfa8f694890078b5fb6d901e420c9a966ece /src/import/import-compress.c
parent32a568fb90bf0a22a3007fa670305403a5d0bb72 (diff)
tree-wide: there is no ENOTSUP on linux
Replace ENOTSUP by EOPNOTSUPP as this is what linux actually uses.
Diffstat (limited to 'src/import/import-compress.c')
-rw-r--r--src/import/import-compress.c6
1 files changed, 3 insertions, 3 deletions
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;