Anand Avati <[email protected]> wrote:

> patch-be - NO (We prefer self-authored code against code copyrighted
> by other projects)

patch-be also contains extended attribute API mappings, it is
self-authored:

+ * Extended attribute API for NetBSD
+ */
+int
+removexattr(const char *path, const char *key)
+{ return extattr_delete_file(path, EXTATTR_NAMESPACE_USER, key); }
+
+ssize_t
+listxattr(const char *path, void *value, size_t size) 
+{ return extattr_list_file(path, EXTATTR_NAMESPACE_USER, value, size);
}
+
(...)




-- 
Emmanuel Dreyfus
http://hcpnet.free.fr/pubz
[email protected]

_______________________________________________
Gluster-devel mailing list
[email protected]
https://lists.nongnu.org/mailman/listinfo/gluster-devel

Reply via email to