summaryrefslogtreecommitdiffstats
path: root/geo-replication/syncdaemon/libcxattr.py
diff options
context:
space:
mode:
Diffstat (limited to 'geo-replication/syncdaemon/libcxattr.py')
-rw-r--r--geo-replication/syncdaemon/libcxattr.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/geo-replication/syncdaemon/libcxattr.py b/geo-replication/syncdaemon/libcxattr.py
index e6035e26b43..74d120fa196 100644
--- a/geo-replication/syncdaemon/libcxattr.py
+++ b/geo-replication/syncdaemon/libcxattr.py
@@ -78,11 +78,6 @@ class Xattr(object):
cls.raise_oserr()
@classmethod
- def lsetxattr_l(cls, path, attr, val):
- """ lazy lsetxattr(): caller handles errno """
- cls.libc.lsetxattr(path, attr, val, len(val), 0)
-
- @classmethod
def lremovexattr(cls, path, attr):
ret = cls.libc.lremovexattr(path, attr)
if ret == -1: