Ignore:
Timestamp:
Jul 26, 2016, 11:58:50 AM (9 years ago)
Author:
Paul Smedley
Message:

Syncronise parts of smbwrp_connect based on Samba do_connect

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/client-3.0/src/smbwrp.c

    r936 r937  
    402402        }
    403403
     404        /* must be a normal share */
     405 
     406        status = cli_tree_connect(c, sharename, "?????",
     407                                  srv->password, strlen(srv->password)+1);
     408        if (!NT_STATUS_IS_OK(status)) {
     409                debuglocal(4,"tree connect failed: %s\n", nt_errstr(status));
     410                cli_shutdown(c);
     411                return status;
     412        }
     413
    404414        debuglocal(4," tconx ok.\n");
    405415       
Note: See TracChangeset for help on using the changeset viewer.