cups/cups-direct-usb.patch

26 lines
731 B
Diff
Raw Normal View History

2007-02-14 18:00:11 +00:00
--- cups-1.2.8/backend/usb-unix.c.direct-usb 2007-02-05 20:25:50.000000000 +0000
+++ cups-1.2.8/backend/usb-unix.c 2007-02-14 17:44:40.000000000 +0000
@@ -87,6 +87,8 @@
use_bc = strcasecmp(hostname, "Canon") &&
strcasecmp(hostname, "Konica Minolta") &&
strcasecmp(hostname, "Minolta");
2006-07-14 11:02:44 +00:00
+ if (use_bc && !strncmp(uri, "usb:/dev/", 9))
+ use_bc = 0;
if ((device_fd = open_device(uri, &use_bc)) == -1)
{
2007-02-14 18:00:11 +00:00
@@ -304,12 +306,7 @@
if (!strncmp(uri, "usb:/dev/", 9))
#ifdef __linux
{
- /*
- * Do not allow direct devices anymore...
- */
-
- errno = ENODEV;
- return (-1);
+ return (open(uri + 4, O_RDWR | O_EXCL));
}
else if (!strncmp(uri, "usb://", 6))
{