From bd886acab805703cfb010b2658c1bb10602ee846 Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Sat, 16 Aug 2003 01:40:38 +0000 Subject: stupid...stupid...stupid....fix bug 294 by looking at the right arch string (This used to be commit 584df6b8d691b30d6ead485cfc8dce7bb30cd8bb) --- source3/printing/nt_printing.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3') diff --git a/source3/printing/nt_printing.c b/source3/printing/nt_printing.c index 9ac5d2b744..60a6ecba4b 100644 --- a/source3/printing/nt_printing.c +++ b/source3/printing/nt_printing.c @@ -1764,7 +1764,7 @@ static WERROR get_a_printer_driver_3(NT_PRINTER_DRIVER_INFO_LEVEL_3 **info_ptr, /* Windows 4.0 (i.e. win9x) should always use a version of 0 */ - if ( strcmp( arch, SPL_ARCH_WIN40 ) == 0 ) + if ( strcmp( architecture, SPL_ARCH_WIN40 ) == 0 ) version = 0; DEBUG(8,("get_a_printer_driver_3: [%s%s/%d/%s]\n", DRIVERS_PREFIX, architecture, version, drivername)); -- cgit