1
0
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:
Volker Lendecke 2011-02-19 20:05:07 +01:00
parent 88f5215560
commit 51b84a9ed7
4 changed files with 12 additions and 9 deletions

View File

@ -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,

View File

@ -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,

View File

@ -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;
}

View File

@ -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);
}