summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2012-09-24 14:11:05 -0700
committerVolker Lendecke <vl@samba.org>2012-09-25 22:41:51 +0200
commit1b403d46c7a94645c72fead6758d81f5b20298cc (patch)
treecfb7fb24c089c246eb22f6d91e72551450ed3a1c /source3
parent11af163df89f504da6d9b0878fe99e2941a1d6d6 (diff)
downloadsamba-1b403d46c7a94645c72fead6758d81f5b20298cc.tar.gz
samba-1b403d46c7a94645c72fead6758d81f5b20298cc.tar.bz2
samba-1b403d46c7a94645c72fead6758d81f5b20298cc.zip
s3: Fix some blank line endings
Diffstat (limited to 'source3')
-rw-r--r--source3/smbd/pysmbd.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source3/smbd/pysmbd.c b/source3/smbd/pysmbd.c
index 87b3f85e5f..4012e6e3c7 100644
--- a/source3/smbd/pysmbd.c
+++ b/source3/smbd/pysmbd.c
@@ -1,7 +1,7 @@
/*
Unix SMB/CIFS implementation.
- Set NT and POSIX ACLs and other VFS operations from Python
-
+ Set NT and POSIX ACLs and other VFS operations from Python
+
Copyrigyt (C) Andrew Bartlett 2012
Copyright (C) Jeremy Allison 1994-2009.
Copyright (C) Andreas Gruenbacher 2002.
@@ -217,17 +217,17 @@ static SMB_ACL_T make_simple_acl(gid_t gid, mode_t chmod_mode)
TALLOC_FREE(acl);
return NULL;
}
-
+
if (sys_acl_set_tag_type(entry, SMB_ACL_GROUP) != 0) {
TALLOC_FREE(acl);
return NULL;
}
-
+
if (sys_acl_set_qualifier(entry, &gid) != 0) {
TALLOC_FREE(acl);
return NULL;
}
-
+
if (sys_acl_set_permset(entry, &mode_group) != 0) {
TALLOC_FREE(acl);
return NULL;
@@ -380,7 +380,7 @@ static PyObject *py_smbd_get_nt_acl(PyObject *self, PyObject *args)
if (!PyArg_ParseTuple(args, "si", &fname, &security_info_wanted))
return NULL;
-
+
sd = get_nt_acl_no_snum(tmp_ctx, fname, security_info_wanted);
py_sd = py_return_ndr_struct("samba.dcerpc.security", "descriptor", sd, sd);