s3:vfs_gpfs re-indent run-away lines
authorChristian Ambach <ambi@samba.org>
Fri, 12 Oct 2012 09:47:04 +0000 (11:47 +0200)
committerChristian Ambach <ambi@samba.org>
Fri, 12 Oct 2012 09:49:32 +0000 (11:49 +0200)
some lines added by the acl_blob additions were longer than 80 chars

source3/modules/vfs_gpfs.c

index ba751b94032003b1e1f52d001cd43fe8033c0514..8e8c69455eccc04402da1382b505d27f00332cc5 100644 (file)
@@ -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);