diff options
author | Günther Deschner <gd@samba.org> | 2009-07-17 17:16:44 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-07-17 17:20:30 +0200 |
commit | 3b44c0c21ee150c1bb13dcfcdbdf25f0479cc400 (patch) | |
tree | 14d4f25a3f326b7a5bd402d61b9fd0531a051125 /source4/ntptr | |
parent | 1a7a8d43308e73d6136ba96e07b10519b4713306 (diff) | |
download | samba-3b44c0c21ee150c1bb13dcfcdbdf25f0479cc400.tar.gz samba-3b44c0c21ee150c1bb13dcfcdbdf25f0479cc400.tar.bz2 samba-3b44c0c21ee150c1bb13dcfcdbdf25f0479cc400.zip |
s4-spoolss: fix the build after OsVersion changes.
Guenther
Diffstat (limited to 'source4/ntptr')
-rw-r--r-- | source4/ntptr/simple_ldb/ntptr_simple_ldb.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/source4/ntptr/simple_ldb/ntptr_simple_ldb.c b/source4/ntptr/simple_ldb/ntptr_simple_ldb.c index 4ebbaaeffc..601f7902df 100644 --- a/source4/ntptr/simple_ldb/ntptr_simple_ldb.c +++ b/source4/ntptr/simple_ldb/ntptr_simple_ldb.c @@ -192,9 +192,12 @@ static WERROR sptr_GetPrintServerData(struct ntptr_GenericHandle *server, TALLOC os_ex.major = server_info->version_major; os_ex.minor = server_info->version_minor; os_ex.build = server_info->version_build; - os_ex.extra_string = ""; - os_ex.unknown2 = 0; - os_ex.unknown3 = 0; + os_ex.extra_string = ""; + os_ex.service_pack_major= 0; + os_ex.service_pack_minor= 0; + os_ex.suite_mask = 0; + os_ex.product_type = 0; + os_ex.reserved = 0; ndr_err = ndr_push_struct_blob(&blob, mem_ctx, lp_iconv_convenience(server->ntptr->lp_ctx), &os_ex, (ndr_push_flags_fn_t)ndr_push_spoolss_OSVersionEx); if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) { |