Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm
List-Subscribe: <mailto:cygwin-subscribe@cygwin.com>
List-Archive: <http://sources.redhat.com/ml/cygwin/>
List-Post: <mailto:cygwin@cygwin.com>
List-Help: <mailto:cygwin-help@cygwin.com>, <http://sources.redhat.com/ml/#faqs>
Sender: cygwin-owner@cygwin.com
Mail-Followup-To: cygwin@cygwin.com
Delivered-To: mailing list cygwin@cygwin.com
Message-ID: <3EE80E77.4080606@cea.fr>
Date: Thu, 12 Jun 2003 07:24:07 +0200
From: gilles civario <gilles.civario@cea.fr>
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.4) Gecko/20030527
X-Accept-Language: fr,en
MIME-Version: 1.0
To: rick_rankin@yahoo.com, cygwin@cygwin.com
Cc: gilles.civario@cea.fr, holmberg@tiac.net
Subject: patch in cygutil/lpr
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit


Hello.

I've found that the new version of lpr provided with cygutils-1.1.4 no longer
works with my PostScript network printer. With the previous version of cygutils
(1.1.3), I had to change the datatype provided to StartDocPrinter from "raw"
to "RAW". This time, the trouble I've encounted wath this one :

$ ./lpr.exe lpr.1
lpr: printer error: StartDocPrinter error: Invalide descriptor
$ uname -a
CYGWIN_NT-5.0 hepatique 1.3.22(0.78/3/2) 2003-03-18 09:20 i686 unknown unknown Cygwin

After some searches, I've found a solution by changing the DesidedAccess of the
PRINTER_DEFAULTS argument in OpenPrinter, from PRINTER_ALL_ACCESS to PRINTER_ACCESS_USE.

$ diff -urN Printer.cc.orig Printer.cc
--- Printer.cc.orig     2003-06-11 05:01:58.000000000 +0200
+++ Printer.cc  2003-06-12 07:10:06.000000000 +0200
@@ -281,7 +281,7 @@

    prDef.pDatatype = "RAW";
    prDef.pDevMode = m_devMode;
-  prDef.DesiredAccess = PRINTER_ALL_ACCESS;
+  prDef.DesiredAccess = PRINTER_ACCESS_USE;

    if (m_devHandle == INVALID_HANDLE_VALUE &&
        !OpenPrinter(tstr(m_devName), &m_devHandle, &prDef))


And now, it works perfectly for me.

Regards.

Gilles Civario.




--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

