From a16e97459342a838a77cd9f17df5347b0632219c Mon Sep 17 00:00:00 2001 From: =?utf8?q?G=C3=BCnther=20Deschner?= Date: Thu, 11 Feb 2010 13:07:38 +0100 Subject: [PATCH] spoolss: allow to set server architecture via parametric option. This allows to set "spoolss:architecture = 'Windows x64'" for debugging purpose. Guenther --- source3/rpc_server/srv_spoolss_nt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/rpc_server/srv_spoolss_nt.c b/source3/rpc_server/srv_spoolss_nt.c index 882193aaef6..5f431c65bc2 100644 --- a/source3/rpc_server/srv_spoolss_nt.c +++ b/source3/rpc_server/srv_spoolss_nt.c @@ -2270,8 +2270,8 @@ static WERROR getprinterdata_printer_server(TALLOC_CTX *mem_ctx, if (!StrCaseCmp(value, "Architecture")) { *type = REG_SZ; - - data->string = talloc_strdup(mem_ctx, "Windows NT x86"); + data->string = talloc_strdup(mem_ctx, + lp_parm_const_string(GLOBAL_SECTION_SNUM, "spoolss", "architecture", SPOOLSS_ARCHITECTURE_NT_X86)); W_ERROR_HAVE_NO_MEMORY(data->string); return WERR_OK; -- 2.11.4.GIT