Changeset 988 for vendor/current/source3/lib/netapi/serverinfo.c
- Timestamp:
- Nov 24, 2016, 1:14:11 PM (9 years ago)
- File:
-
- 1 edited
-
vendor/current/source3/lib/netapi/serverinfo.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source3/lib/netapi/serverinfo.c
r740 r988 37 37 38 38 i.sv101_platform_id = PLATFORM_ID_NT; 39 i.sv101_name = global_myname();40 i.sv101_version_major = lp_major_announce_version();41 i.sv101_version_minor = lp_minor_announce_version();39 i.sv101_name = name(); 40 i.sv101_version_major = ; 41 i.sv101_version_minor = ; 42 42 i.sv101_type = lp_default_server_announce(); 43 i.sv101_comment = lp_server string();43 i.sv101_comment = lp_server); 44 44 45 45 *buffer = (uint8_t *)talloc_memdup(ctx, &i, sizeof(i)); … … 59 59 struct SERVER_INFO_1005 info1005; 60 60 61 info1005.sv1005_comment = lp_server string();61 info1005.sv1005_comment = lp_server); 62 62 *buffer = (uint8_t *)talloc_memdup(ctx, &info1005, sizeof(info1005)); 63 63 if (!*buffer) { … … 504 504 505 505 werr = libnetapi_get_binding_handle(ctx, r->in.server_name, 506 &ndr_table_srvsvc .syntax_id,506 &ndr_table_srvsvc, 507 507 &b); 508 508 if (!W_ERROR_IS_OK(werr)) { … … 617 617 618 618 werr = libnetapi_get_binding_handle(ctx, r->in.server_name, 619 &ndr_table_srvsvc .syntax_id,619 &ndr_table_srvsvc, 620 620 &b); 621 621 if (!W_ERROR_IS_OK(werr)) { … … 659 659 660 660 werr = libnetapi_get_binding_handle(ctx, r->in.server_name, 661 &ndr_table_srvsvc .syntax_id,661 &ndr_table_srvsvc, 662 662 &b); 663 663 if (!W_ERROR_IS_OK(werr)) {
Note:
See TracChangeset
for help on using the changeset viewer.
