summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_gpfs.c
diff options
context:
space:
mode:
authorChristian Ambach <ambi@samba.org>2012-10-12 11:47:04 +0200
committerChristian Ambach <ambi@samba.org>2012-10-12 11:49:32 +0200
commit6d1be1caf925f80badabcbca3a2676398647f4a3 (patch)
tree9b7027c9c3a27cfede6a689fcb6226dbf3351157 /source3/modules/vfs_gpfs.c
parentfa728d1c0b6583c7d11b5540a8d13942a14701f4 (diff)
downloadsamba-6d1be1caf925f80badabcbca3a2676398647f4a3.tar.gz
samba-6d1be1caf925f80badabcbca3a2676398647f4a3.tar.bz2
samba-6d1be1caf925f80badabcbca3a2676398647f4a3.zip
s3:vfs_gpfs re-indent run-away lines
some lines added by the acl_blob additions were longer than 80 chars
Diffstat (limited to 'source3/modules/vfs_gpfs.c')
-rw-r--r--source3/modules/vfs_gpfs.c14
1 files changed, 10 insertions, 4 deletions
diff --git a/source3/modules/vfs_gpfs.c b/source3/modules/vfs_gpfs.c
index ba751b9403..8e8c69455e 100644
--- a/source3/modules/vfs_gpfs.c
+++ b/source3/modules/vfs_gpfs.c
@@ -714,7 +714,8 @@ static SMB_ACL_T gpfsacl_sys_acl_get_fd(vfs_handle_struct *handle,
GPFS_ACL_TYPE_ACCESS, mem_ctx);
}
-static int gpfsacl_sys_acl_blob_get_file(vfs_handle_struct *handle, const char *path_p,
+static int gpfsacl_sys_acl_blob_get_file(vfs_handle_struct *handle,
+ const char *path_p,
TALLOC_CTX *mem_ctx,
char **blob_description,
DATA_BLOB *blob)
@@ -728,7 +729,10 @@ static int gpfsacl_sys_acl_blob_get_file(vfs_handle_struct *handle, const char *
return -1);
if (!config->acl) {
- return SMB_VFS_NEXT_SYS_ACL_BLOB_GET_FILE(handle, path_p, mem_ctx, blob_description, blob);
+ return SMB_VFS_NEXT_SYS_ACL_BLOB_GET_FILE(handle, path_p,
+ mem_ctx,
+ blob_description,
+ blob);
}
result = gpfs_get_nfs4_acl(path_p, &pacl);
@@ -744,7 +748,8 @@ static int gpfsacl_sys_acl_blob_get_file(vfs_handle_struct *handle, const char *
blob_description, blob);
}
-static int gpfsacl_sys_acl_blob_get_fd(vfs_handle_struct *handle, files_struct *fsp,
+static int gpfsacl_sys_acl_blob_get_fd(vfs_handle_struct *handle,
+ files_struct *fsp,
TALLOC_CTX *mem_ctx,
char **blob_description,
DATA_BLOB *blob)
@@ -758,7 +763,8 @@ static int gpfsacl_sys_acl_blob_get_fd(vfs_handle_struct *handle, files_struct *
return -1);
if (!config->acl) {
- return SMB_VFS_NEXT_SYS_ACL_BLOB_GET_FD(handle, fsp, mem_ctx, blob_description, blob);
+ return SMB_VFS_NEXT_SYS_ACL_BLOB_GET_FD(handle, fsp, mem_ctx,
+ blob_description, blob);
}
result = gpfs_get_nfs4_acl(fsp->fsp_name->base_name, &pacl);