summaryrefslogtreecommitdiff
path: root/source4/scripting/python/pyxattr_tdb.c
diff options
context:
space:
mode:
authorMatthieu Patou <mat@matws.net>2009-12-07 19:13:00 +0300
committerAndrew Bartlett <abartlet@samba.org>2010-01-21 07:11:14 +1300
commit08c59c38a2b117b2f2481cc6a02186b7df6305f2 (patch)
tree597cadf5e1f6480eba1f0cffc4d793de50b11169 /source4/scripting/python/pyxattr_tdb.c
parentc80ecd9964285f3c4a5128389c4e330ab25cca1c (diff)
downloadsamba-08c59c38a2b117b2f2481cc6a02186b7df6305f2.tar.gz
samba-08c59c38a2b117b2f2481cc6a02186b7df6305f2.tar.bz2
samba-08c59c38a2b117b2f2481cc6a02186b7df6305f2.zip
s4: Create unit tests for python "samba.xattr" module
Diffstat (limited to 'source4/scripting/python/pyxattr_tdb.c')
-rw-r--r--source4/scripting/python/pyxattr_tdb.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/source4/scripting/python/pyxattr_tdb.c b/source4/scripting/python/pyxattr_tdb.c
index 19b4f417a8..aa511fa5e7 100644
--- a/source4/scripting/python/pyxattr_tdb.c
+++ b/source4/scripting/python/pyxattr_tdb.c
@@ -33,12 +33,11 @@
static PyObject *py_is_xattr_supported(PyObject *self)
{
-/*#if !defined(HAVE_XATTR_SUPPORT)
+#if !defined(HAVE_XATTR_SUPPORT)
return Py_False;
#else
return Py_True;
-#endif*/
- return Py_True;
+#endif
}
static PyObject *py_wrap_setxattr(PyObject *self, PyObject *args)
{
@@ -105,7 +104,7 @@ static PyMethodDef py_xattr_methods[] = {
"wrap_setxattr(filename,attribute,value)\n"
"Set the given attribute to the given value on the given file." },
{ "is_xattr_supported", (PyCFunction)py_is_xattr_supported, METH_NOARGS,
- "Return true if xattr backed by tdb are supported on this system\n"},
+ "Return true if xattr are supported on this system\n"},
{ NULL }
};