diff options
Diffstat (limited to 'source3/modules')
-rw-r--r-- | source3/modules/vfs_extd_audit.c | 2 | ||||
-rw-r--r-- | source3/modules/vfs_recycle.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source3/modules/vfs_extd_audit.c b/source3/modules/vfs_extd_audit.c index e677552eea..06cddc78e4 100644 --- a/source3/modules/vfs_extd_audit.c +++ b/source3/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"); diff --git a/source3/modules/vfs_recycle.c b/source3/modules/vfs_recycle.c index 80f243a168..e725daedba 100644 --- a/source3/modules/vfs_recycle.c +++ b/source3/modules/vfs_recycle.c @@ -482,7 +482,7 @@ NTSTATUS vfs_recycle_init(void) { NTSTATUS ret = smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "recycle", recycle_ops); - if (NT_STATUS_IS_ERR(ret)) + if (!NT_STATUS_IS_OK(ret)) return ret; vfs_recycle_debug_level = debug_add_class("recycle"); |