The branch, master has been updated via a16e974... spoolss: allow to set server architecture via parametric option. from 25001bb... s3-spoolss: implement spoolss_EnumJobs level 3.
http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master - Log ----------------------------------------------------------------- commit a16e97459342a838a77cd9f17df5347b0632219c Author: Günther Deschner <g...@samba.org> Date: Thu Feb 11 13:07:38 2010 +0100 spoolss: allow to set server architecture via parametric option. This allows to set "spoolss:architecture = 'Windows x64'" for debugging purpose. Guenther ----------------------------------------------------------------------- Summary of changes: source3/rpc_server/srv_spoolss_nt.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Changeset truncated at 500 lines: diff --git a/source3/rpc_server/srv_spoolss_nt.c b/source3/rpc_server/srv_spoolss_nt.c index 882193a..5f431c6 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; -- Samba Shared Repository