Changeset 745 for trunk/server/source4/ntvfs/cifs
- Timestamp:
- Nov 27, 2012, 4:43:17 PM (13 years ago)
- Location:
- trunk/server
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server
- Property svn:mergeinfo changed
/vendor/current merged: 581,587,591,594,597,600,615,618,740
- Property svn:mergeinfo changed
-
trunk/server/source4/ntvfs/cifs/vfs_cifs.c
r414 r745 232 232 /* connect to the server, using the smbd event context */ 233 233 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); 236 236 io.in.called_name = host; 237 237 io.in.credentials = credentials; 238 238 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); 240 240 io.in.service = remote_share; 241 241 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); 246 245 247 246 if (!(ntvfs->ctx->client_caps & NTVFS_CLIENT_CAP_LEVEL_II_OPLOCKS)) { … … 250 249 251 250 creq = smb_composite_connect_send(&io, p, 252 lp _resolve_context(ntvfs->ctx->lp_ctx),251 lpcfg_resolve_context(ntvfs->ctx->lp_ctx), 253 252 ntvfs->ctx->event_ctx); 254 253 status = smb_composite_connect_recv(creq, p);
Note:
See TracChangeset
for help on using the changeset viewer.