aboutsummaryrefslogtreecommitdiffstats
path: root/guts/getxattr.c
diff options
context:
space:
mode:
Diffstat (limited to 'guts/getxattr.c')
-rw-r--r--guts/getxattr.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/guts/getxattr.c b/guts/getxattr.c
index ce2a618..71cfd56 100644
--- a/guts/getxattr.c
+++ b/guts/getxattr.c
@@ -1,13 +1,12 @@
-/*
+/*
* Copyright (c) 2010 Wind River Systems; see
* guts/COPYRIGHT for information.
*
- * static ssize_t
- * wrap_getxattr(const char *path, const char *name, void *value, size_t size) {
+ * ssize_t getxattr(const char *pathname, const char *name, void *value, size_t size)
* ssize_t rc = -1;
*/
- rc = real_getxattr(path, name, value, size);
+ errno = ENOTSUP;
/* return rc;
* }