From 1b403d46c7a94645c72fead6758d81f5b20298cc Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 24 Sep 2012 14:11:05 -0700 Subject: [PATCH] s3: Fix some blank line endings --- source3/smbd/pysmbd.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/source3/smbd/pysmbd.c b/source3/smbd/pysmbd.c index 87b3f85e5f0..4012e6e3c76 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); -- 2.11.4.GIT