s3: Fix some blank line endings
authorVolker Lendecke <vl@samba.org>
Mon, 24 Sep 2012 21:11:05 +0000 (14:11 -0700)
committerVolker Lendecke <vl@samba.org>
Tue, 25 Sep 2012 20:41:51 +0000 (22:41 +0200)
source3/smbd/pysmbd.c

index 87b3f85e5f0504a011050f13f2f85b439a477ecb..4012e6e3c76c1a4a3a6d500c93d0a6dca70d78f0 100644 (file)
@@ -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);