From 6025ab201aa34bbf4a7e897149ef6ba370a89703 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Wed, 23 Jan 2002 11:47:19 +0000 Subject: Sync up startpageprinter with appliance. --- source/rpc_server/srv_spoolss_nt.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/source/rpc_server/srv_spoolss_nt.c b/source/rpc_server/srv_spoolss_nt.c index cffd88c3aa1..57521dc1446 100644 --- a/source/rpc_server/srv_spoolss_nt.c +++ b/source/rpc_server/srv_spoolss_nt.c @@ -4011,13 +4011,13 @@ WERROR _spoolss_startpageprinter(pipes_struct *p, SPOOL_Q_STARTPAGEPRINTER *q_u, Printer_entry *Printer = find_printer_index_by_hnd(p, handle); - if (Printer) { - Printer->page_started=True; - return WERR_OK; + if (!Printer) { + DEBUG(3,("Error in startpageprinter printer handle\n")); + return WERR_BADFID; } - DEBUG(3,("Error in startpageprinter printer handle\n")); - return WERR_BADFID; + Printer->page_started=True; + return WERR_OK; } /**************************************************************************** -- cgit