[Pkg-cups-devel] r135 - cupsys/branches/cups-1.2/debian

Martin Pitt mpitt at costa.debian.org
Tue Apr 11 22:18:18 UTC 2006


Author: mpitt
Date: Tue Apr 11 22:18:15 2006
New Revision: 135

Modified:
   cupsys/branches/cups-1.2/debian/changelog
   cupsys/branches/cups-1.2/debian/pdftops
Log:
* debian/pdftops: Fix reading from stdin (https://launchpad.net/bugs/17124)

Modified: cupsys/branches/cups-1.2/debian/changelog
==============================================================================
--- cupsys/branches/cups-1.2/debian/changelog	(original)
+++ cupsys/branches/cups-1.2/debian/changelog	Tue Apr 11 22:18:15 2006
@@ -38,8 +38,9 @@
     it any more.
   * debian/patches/09_runasuser_fixes.dpatch: Remove group handling bits,
     since RunAsUser was dropped upstream.
+  * debian/pdftops: Fix reading from stdin (https://launchpad.net/bugs/17124)
 
- -- Kenshi Muto <kmuto at debian.org>  Tue, 11 Apr 2006 11:25:45 +0000
+ -- Martin Pitt <mpitt at debian.org>  Wed, 12 Apr 2006 00:17:36 +0200
 
 cupsys (1.1.99.b1.r4885-1) experimental; urgency=low
 

Modified: cupsys/branches/cups-1.2/debian/pdftops
==============================================================================
--- cupsys/branches/cups-1.2/debian/pdftops	(original)
+++ cupsys/branches/cups-1.2/debian/pdftops	Tue Apr 11 22:18:15 2006
@@ -89,7 +89,7 @@
 {
 	my $tmpfile = $ENV{TMPDIR} . "pdfin.$$.tmp";
 	open (TEMP, ">$tmpfile") || die ("ERROR: pdftops wrapper: $tmpfile: $!\n");
-	if (! copy (STDIN, TEMP))
+	if (! copy (\*STDIN, \*TEMP))
 	{
 		close (TEMP);
 		unlink $tmpfile;



More information about the Pkg-cups-devel mailing list