Changeset 988 for vendor/current/source3/lib/netapi/joindomain.c
- Timestamp:
- Nov 24, 2016, 1:14:11 PM (9 years ago)
- File:
-
- 1 edited
-
vendor/current/source3/lib/netapi/joindomain.c (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source3/lib/netapi/joindomain.c
r740 r988 116 116 DATA_BLOB session_key; 117 117 118 119 120 121 118 122 werr = libnetapi_open_pipe(ctx, r->in.server, 119 &ndr_table_wkssvc .syntax_id,123 &ndr_table_wkssvc, 120 124 &pipe_cli); 121 125 if (!W_ERROR_IS_OK(werr)) { … … 258 262 259 263 werr = libnetapi_open_pipe(ctx, r->in.server_name, 260 &ndr_table_wkssvc .syntax_id,264 &ndr_table_wkssvc, 261 265 &pipe_cli); 262 266 if (!W_ERROR_IS_OK(werr)) { … … 314 318 315 319 werr = libnetapi_open_pipe(ctx, r->in.server_name, 316 &ndr_table_wkssvc .syntax_id,320 &ndr_table_wkssvc, 317 321 &pipe_cli); 318 322 if (!W_ERROR_IS_OK(werr)) { … … 388 392 DS_RETURN_DNS_NAME; 389 393 struct libnetapi_private_ctx *priv; 394 395 390 396 391 397 priv = talloc_get_type_abort(ctx->private_data, … … 427 433 } 428 434 429 ads_status = ads_get_joinable_ous(ads, ctx, 430 (char ***)r->out.ous, 431 (size_t *)r->out.ou_count); 435 ads_status = ads_get_joinable_ous(ads, ctx, &p, &s); 432 436 if (!ADS_ERR_OK(ads_status)) { 433 437 ads_destroy(&ads); 434 438 return WERR_DEFAULT_JOIN_REQUIRED; 435 439 } 440 441 436 442 437 443 ads_destroy(&ads); … … 456 462 457 463 werr = libnetapi_open_pipe(ctx, r->in.server_name, 458 &ndr_table_wkssvc .syntax_id,464 &ndr_table_wkssvc, 459 465 &pipe_cli); 460 466 if (!W_ERROR_IS_OK(werr)) { … … 509 515 510 516 werr = libnetapi_open_pipe(ctx, r->in.server_name, 511 &ndr_table_wkssvc .syntax_id,517 &ndr_table_wkssvc, 512 518 &pipe_cli); 513 519 if (!W_ERROR_IS_OK(werr)) {
Note:
See TracChangeset
for help on using the changeset viewer.
