mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
smbclient: Fix errors printed if we can connect with SMB1
smbclient -L //server before: Reconnecting with SMB1 for workgroup listing. Connection to earth.milkyway.site failed (Error NT_STATUS_RESOURCE_NAME_NOT_FOUND) Failed to connect with SMB1 -- no workgroup available after: Reconnecting with SMB1 for workgroup listing. Unable to connect with SMB1 -- no workgroup available Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
parent
aa07400f73
commit
e0e86e8ae6
@ -6227,7 +6227,7 @@ static int do_host_query(const char *query_host)
|
||||
smb_encrypt, max_proto,
|
||||
NBT_SMB_PORT, name_type, &cli);
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
d_printf("Failed to connect with SMB1 "
|
||||
d_printf("Unable to connect with SMB1 "
|
||||
"-- no workgroup available\n");
|
||||
return 0;
|
||||
}
|
||||
|
@ -196,9 +196,9 @@ static NTSTATUS do_connect(TALLOC_CTX *ctx,
|
||||
flags, &c);
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
d_printf("Connection to %s failed (Error %s)\n",
|
||||
server,
|
||||
nt_errstr(status));
|
||||
DBG_WARNING("Connection to %s failed (Error %s)\n",
|
||||
server,
|
||||
nt_errstr(status));
|
||||
return status;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user