summaryrefslogtreecommitdiffstats
path: root/source/locking/posix.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2006-07-12 19:23:45 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:19:17 -0500
commitf11933b3ac91c6fbacd6b410f4d2c0d400df23ee (patch)
tree21cca208e5c673be7ee8efdde0134b10e7857946 /source/locking/posix.c
parentf62c01316ef3ce0351f8b34229307a75d8f9f156 (diff)
downloadsamba-f11933b3ac91c6fbacd6b410f4d2c0d400df23ee.tar.gz
samba-f11933b3ac91c6fbacd6b410f4d2c0d400df23ee.tar.xz
samba-f11933b3ac91c6fbacd6b410f4d2c0d400df23ee.zip
r16992: Fix bug #3922 reported by jason@ncac.gwu.edu, correctly
look at the return code. Jeremy.
Diffstat (limited to 'source/locking/posix.c')
-rw-r--r--source/locking/posix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/locking/posix.c b/source/locking/posix.c
index 475ab61a2f0..9d5c42a1bcd 100644
--- a/source/locking/posix.c
+++ b/source/locking/posix.c
@@ -1331,5 +1331,5 @@ BOOL release_posix_lock_posix_flavour(files_struct *fsp,
}
talloc_destroy(ul_ctx);
- return True;
+ return ret;
}