r16993: Fix bug #3922 reported by jason@ncac.gwu.edu, correctly
authorJeremy Allison <jra@samba.org>
Wed, 12 Jul 2006 19:23:49 +0000 (19:23 +0000)
committerJeremy Allison <jra@samba.org>
Wed, 12 Jul 2006 19:23:49 +0000 (19:23 +0000)
look at the return code.
Jeremy.

source/locking/posix.c

index 475ab61a2f0b78667544f95e56169a994dc017ac..9d5c42a1bcde52687234cf3189f7c298ad21aee4 100644 (file)
@@ -1331,5 +1331,5 @@ BOOL release_posix_lock_posix_flavour(files_struct *fsp,
        }
 
        talloc_destroy(ul_ctx);
-       return True;
+       return ret;
 }