From ce1a9ae8abc3e4d49374b5b02c6ec55d2df63f72 Mon Sep 17 00:00:00 2001 From: =?utf8?q?G=C3=BCnther=20Deschner?= Date: Sat, 19 Jan 2013 01:37:29 +0100 Subject: [PATCH] s3-spoolss: Make it easier to manipulate the returned OSVersion at runtime. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Guenther Signed-off-by: Günther Deschner Reviewed-by: Andreas Schneider --- source3/rpc_server/spoolss/srv_spoolss_nt.c | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/source3/rpc_server/spoolss/srv_spoolss_nt.c b/source3/rpc_server/spoolss/srv_spoolss_nt.c index 3107cda36fb..ef203d8f545 100644 --- a/source3/rpc_server/spoolss/srv_spoolss_nt.c +++ b/source3/rpc_server/spoolss/srv_spoolss_nt.c @@ -2338,9 +2338,13 @@ static WERROR getprinterdata_printer_server(TALLOC_CTX *mem_ctx, enum ndr_err_code ndr_err; struct spoolss_OSVersion os; - os.major = 5; /* Windows 2000 == 5.0 */ - os.minor = 0; - os.build = 2195; /* build */ + os.major = lp_parm_int(GLOBAL_SECTION_SNUM, + "spoolss", "os_major", 5); + /* Windows 2000 == 5.0 */ + os.minor = lp_parm_int(GLOBAL_SECTION_SNUM, + "spoolss", "os_minor", 0); + os.build = lp_parm_int(GLOBAL_SECTION_SNUM, + "spoolss", "os_build", 2195); os.extra_string = ""; /* leave extra string empty */ ndr_err = ndr_push_struct_blob(&blob, mem_ctx, &os, @@ -2349,6 +2353,10 @@ static WERROR getprinterdata_printer_server(TALLOC_CTX *mem_ctx, return WERR_GENERAL_FAILURE; } + if (DEBUGLEVEL >= 10) { + NDR_PRINT_DEBUG(spoolss_OSVersion, &os); + } + *type = REG_BINARY; data->binary = blob; -- 2.11.4.GIT