Ignore:
Timestamp:
Nov 12, 2012, 5:09:31 PM (13 years ago)
Author:
Silvan Scherrer
Message:

Samba Server 3.5: update branche to 3.5.13

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.5.x/source3/client/client.c

    r732 r733  
    44834483                status = cli_echo(cli, 1, data_blob_const(garbage, sizeof(garbage)));
    44844484
    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)));
    44884492                        finished = true;
    44894493                        smb_readline_done();
Note: See TracChangeset for help on using the changeset viewer.