mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
parent
9fc99e3c55
commit
8cd8cfd4cf
@ -1075,8 +1075,8 @@ machine %s. Error was : %s.\n", remote_machine, cli_errstr(&cli) ));
|
||||
}
|
||||
|
||||
if (!attempt_netbios_session_request(&cli, global_myname, remote_machine, &cli.dest_ip)) {
|
||||
DEBUG(0,("fetch_domain_sid: machine %s rejected the NetBIOS \
|
||||
session request. Error was %s\n", remote_machine, cli_errstr(&cli) ));
|
||||
DEBUG(0,("fetch_domain_sid: machine %s rejected the NetBIOS session request.\n",
|
||||
remote_machine));
|
||||
goto done;
|
||||
}
|
||||
|
||||
|
@ -80,6 +80,11 @@ char *cli_errstr(struct cli_state *cli)
|
||||
uint8 errclass;
|
||||
int i;
|
||||
|
||||
if (!cli->initialised) {
|
||||
fstrcpy(cli_error_message, "[Programmer's error] cli_errstr called on unitialized cli_stat struct!\n");
|
||||
return cli_error_message;
|
||||
}
|
||||
|
||||
/* Case #1: RAP error */
|
||||
if (cli->rap_error) {
|
||||
for (i = 0; rap_errmap[i].message != NULL; i++) {
|
||||
|
@ -69,8 +69,8 @@ BOOL spoolss_connect_to_client( struct cli_state *cli, char *remote_machine)
|
||||
}
|
||||
|
||||
if (!attempt_netbios_session_request(cli, global_myname, remote_machine, &cli->dest_ip)) {
|
||||
DEBUG(0,("connect_to_client: machine %s rejected the NetBIOS session request. Error was %s\n", remote_machine, cli_errstr(cli) ));
|
||||
cli_shutdown(cli);
|
||||
DEBUG(0,("connect_to_client: machine %s rejected the NetBIOS session request.\n",
|
||||
remote_machine));
|
||||
return False;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user