summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalph Boehme <slow@samba.org>2015-04-30 12:29:57 +0200
committerKarolin Seeger <kseeger@samba.org>2015-05-20 16:34:30 +0200
commit18536b8f7af69b6325f20464f229a47e4ae7646d (patch)
treeb1c87f02131409aba3a4c5aae11361e9b93ce5ea
parent007a5fd308f9185ed12fe26ca7d01c843ef60ce0 (diff)
downloadsamba-18536b8f7af69b6325f20464f229a47e4ae7646d.tar.gz
vfs_gpfs: move failure label before END_PROFILE
The label was added in 5e65ae14ddb74c648f31b4dfbacd4af9c02ca058 as part of fix for bug 11244, but was wrongly placed behind END_PROFILE. Bug: https://bugzilla.samba.org/show_bug.cgi?id=11244 Signed-off-by: Ralph Boehme <slow@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> Autobuild-User(master): Ralph Böhme <slow@samba.org> Autobuild-Date(master): Thu May 7 19:22:00 CEST 2015 on sn-devel-104 (cherry picked from commit 3876e59826ad17466975ae9e9a65879c76737b2b)
-rw-r--r--source3/modules/vfs_gpfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/vfs_gpfs.c b/source3/modules/vfs_gpfs.c
index baf39b02cb2..11e6506a8e7 100644
--- a/source3/modules/vfs_gpfs.c
+++ b/source3/modules/vfs_gpfs.c
@@ -134,9 +134,9 @@ static int vfs_gpfs_setlease(vfs_handle_struct *handle, files_struct *fsp,
unbecome_root();
}
+failure:
END_PROFILE(syscall_linux_setlease);
-failure:
return ret;
}