diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-08-27 19:46:22 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-08-27 19:46:22 +0000 |
commit | 1d36250e338ae0ff9fbbf86019809205dd97d05e (patch) | |
tree | e9698f0341f3d5189f45dfd8773b38e57b4da599 /source/locking | |
parent | 8021669b167053b5500f035c9c50d1327d73c232 (diff) | |
download | samba-1d36250e338ae0ff9fbbf86019809205dd97d05e.tar.gz |
converted another bunch of stuff to NTSTATUS
Diffstat (limited to 'source/locking')
-rw-r--r-- | source/locking/locking.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/locking/locking.c b/source/locking/locking.c index e905bd56e9d..4928d6d1606 100644 --- a/source/locking/locking.c +++ b/source/locking/locking.c @@ -143,7 +143,7 @@ NTSTATUS do_lock(files_struct *fsp,connection_struct *conn, uint16 lock_pid, if (!ok) return NT_STATUS_FILE_LOCK_CONFLICT; - return NT_STATUS_NOPROBLEMO; /* Got lock */ + return NT_STATUS_OK; /* Got lock */ } /**************************************************************************** |