Ignore:
Timestamp:
Nov 27, 2012, 4:43:17 PM (13 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: updated trunk to 3.6.0

Location:
trunk/server
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/server

  • trunk/server/source4/ntvfs/cifs/vfs_cifs.c

    r414 r745  
    232232        /* connect to the server, using the smbd event context */
    233233        io.in.dest_host = host;
    234         io.in.dest_ports = lp_smb_ports(ntvfs->ctx->lp_ctx);
    235         io.in.socket_options = lp_socket_options(ntvfs->ctx->lp_ctx);
     234        io.in.dest_ports = lpcfg_smb_ports(ntvfs->ctx->lp_ctx);
     235        io.in.socket_options = lpcfg_socket_options(ntvfs->ctx->lp_ctx);
    236236        io.in.called_name = host;
    237237        io.in.credentials = credentials;
    238238        io.in.fallback_to_anonymous = false;
    239         io.in.workgroup = lp_workgroup(ntvfs->ctx->lp_ctx);
     239        io.in.workgroup = lpcfg_workgroup(ntvfs->ctx->lp_ctx);
    240240        io.in.service = remote_share;
    241241        io.in.service_type = "?????";
    242         io.in.iconv_convenience = lp_iconv_convenience(ntvfs->ctx->lp_ctx);
    243         io.in.gensec_settings = lp_gensec_settings(p, ntvfs->ctx->lp_ctx);
    244         lp_smbcli_options(ntvfs->ctx->lp_ctx, &io.in.options);
    245         lp_smbcli_session_options(ntvfs->ctx->lp_ctx, &io.in.session_options);
     242        io.in.gensec_settings = lpcfg_gensec_settings(p, ntvfs->ctx->lp_ctx);
     243        lpcfg_smbcli_options(ntvfs->ctx->lp_ctx, &io.in.options);
     244        lpcfg_smbcli_session_options(ntvfs->ctx->lp_ctx, &io.in.session_options);
    246245
    247246        if (!(ntvfs->ctx->client_caps & NTVFS_CLIENT_CAP_LEVEL_II_OPLOCKS)) {
     
    250249
    251250        creq = smb_composite_connect_send(&io, p,
    252                                           lp_resolve_context(ntvfs->ctx->lp_ctx),
     251                                          lpcfg_resolve_context(ntvfs->ctx->lp_ctx),
    253252                                          ntvfs->ctx->event_ctx);
    254253        status = smb_composite_connect_recv(creq, p);
Note: See TracChangeset for help on using the changeset viewer.