Changeset 733 for branches/samba-3.5.x/source3/client/client.c
- Timestamp:
- Nov 12, 2012, 5:09:31 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.5.x/source3/client/client.c
r732 r733 4483 4483 status = cli_echo(cli, 1, data_blob_const(garbage, sizeof(garbage))); 4484 4484 4485 if (!NT_STATUS_IS_OK(status)) { 4486 DEBUG(0, ("SMBecho failed. Maybe server has closed " 4487 "the connection\n")); 4485 if (NT_STATUS_IS_OK(status)) { 4486 return; 4487 } 4488 4489 if (!cli_state_is_connected(cli)) { 4490 DEBUG(0, ("SMBecho failed (%s). The connection is " 4491 "disconnected now\n", nt_errstr(status))); 4488 4492 finished = true; 4489 4493 smb_readline_done();
Note:
See TracChangeset
for help on using the changeset viewer.