Sync up startpageprinter with appliance.
authorTim Potter <tpot@samba.org>
Wed, 23 Jan 2002 11:47:19 +0000 (11:47 +0000)
committerTim Potter <tpot@samba.org>
Wed, 23 Jan 2002 11:47:19 +0000 (11:47 +0000)
(This used to be commit 6025ab201aa34bbf4a7e897149ef6ba370a89703)

source3/rpc_server/srv_spoolss_nt.c

index cffd88c3aa100d089e6edc52f3b2e2d75d53b3e2..57521dc1446c620624428f7edda938cecb96d592 100644 (file)
@@ -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;
 }
 
 /****************************************************************************