mirror of
https://github.com/samba-team/samba.git
synced 2025-02-02 09:47:23 +03:00
s3: Convert init_system_info to NTSTATUS
This commit is contained in:
parent
88f5215560
commit
51b84a9ed7
@ -918,13 +918,12 @@ NTSTATUS make_server_info_guest(TALLOC_CTX *mem_ctx,
|
||||
|
||||
static struct auth_serversupplied_info *system_info = NULL;
|
||||
|
||||
bool init_system_info(void)
|
||||
NTSTATUS init_system_info(void)
|
||||
{
|
||||
if (system_info != NULL)
|
||||
return True;
|
||||
return NT_STATUS_OK;
|
||||
|
||||
return NT_STATUS_IS_OK(make_new_server_info_system(NULL,
|
||||
&system_info));
|
||||
return make_new_server_info_system(NULL, &system_info);
|
||||
}
|
||||
|
||||
NTSTATUS make_server_info_system(TALLOC_CTX *mem_ctx,
|
||||
|
@ -143,7 +143,7 @@ NTSTATUS make_serverinfo_from_username(TALLOC_CTX *mem_ctx,
|
||||
struct auth_serversupplied_info *copy_serverinfo(TALLOC_CTX *mem_ctx,
|
||||
const struct auth_serversupplied_info *src);
|
||||
bool init_guest_info(void);
|
||||
bool init_system_info(void);
|
||||
NTSTATUS init_system_info(void);
|
||||
bool server_info_set_session_key(struct auth_serversupplied_info *info,
|
||||
DATA_BLOB session_key);
|
||||
NTSTATUS make_server_info_guest(TALLOC_CTX *mem_ctx,
|
||||
|
@ -1179,8 +1179,10 @@ extern void build_options(bool screen);
|
||||
exit(1);
|
||||
}
|
||||
|
||||
if (!init_system_info()) {
|
||||
DEBUG(0,("ERROR: failed to setup system user info.\n"));
|
||||
status = init_system_info();
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
DEBUG(1, ("ERROR: failed to setup system user info: %s.\n",
|
||||
nt_errstr(status)));
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
@ -1398,8 +1398,10 @@ int main(int argc, char **argv, char **envp)
|
||||
|
||||
winbindd_register_handlers();
|
||||
|
||||
if (!init_system_info()) {
|
||||
DEBUG(0,("ERROR: failed to setup system user info.\n"));
|
||||
status = init_system_info();
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
DEBUG(1, ("ERROR: failed to setup system user info: %s.\n",
|
||||
nt_errstr(status)));
|
||||
exit(1);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user