diff options
author | Simo Sorce <idra@samba.org> | 2003-06-22 10:09:52 +0000 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2003-06-22 10:09:52 +0000 |
commit | c501e84d412563eb3f674f76038ec48c2b458687 (patch) | |
tree | 50bab35223837e8be991daaba0adfd7b5539a3fe /source/modules/vfs_extd_audit.c | |
parent | b7760faedc2181538ffc325e727808e6df8f943f (diff) | |
download | samba-c501e84d412563eb3f674f76038ec48c2b458687.tar.gz |
Found out a good number of NT_STATUS_IS_ERR used the wrong way.
As abartlet rememberd me NT_STATUS_IS_ERR != !NT_STATUS_IS_OK
This patch will cure the problem.
Working on this one I found 16 functions where I think NT_STATUS_IS_ERR() is
used correctly, but I'm not 100% sure, coders should check the use of
NT_STATUS_IS_ERR() in samba is ok now.
Simo.
Diffstat (limited to 'source/modules/vfs_extd_audit.c')
-rw-r--r-- | source/modules/vfs_extd_audit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/modules/vfs_extd_audit.c b/source/modules/vfs_extd_audit.c index e677552eeae..06cddc78e43 100644 --- a/source/modules/vfs_extd_audit.c +++ b/source/modules/vfs_extd_audit.c @@ -328,7 +328,7 @@ NTSTATUS vfs_extd_audit_init(void) { NTSTATUS ret = smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "extd_audit", audit_op_tuples); - if (NT_STATUS_IS_ERR(ret)) + if (!NT_STATUS_IS_OK(ret)) return ret; vfs_extd_audit_debug_level = debug_add_class("extd_audit"); |